1. ホーム
  2. java

[解決済み】NullPointerExcetionネイティブメソッドアクセサ... ハッシュ文字列の問題

2022-01-26 23:24:11

質問

ファイルを読み込んで、"Words"をソートするプロジェクトを書いています。このコードは正しくコンパイルされますが、ヌルポインタの例外が発生します。何かアイデアはありますか?

import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
import java.util.Hashtable;

public class Lab {
   Hashtable<String, Word> words = new Hashtable<String, Word>();

   public void addWord(String s, int i) {
      if (words.containsKey(s)) {
         words.get(s).addOne();
         words.get(s).addLine(i);
      } else {
         words.put(s, new Word(s));
         words.get(s).addLine(i);
      }
   }

   public void main(String[] args) {
      System.out.println("HI");
      File file = new File("s.txt");
      int linecount = 1;
      try {
         Scanner scanner = new Scanner(file);
         System.out.println("HUH");

         while (scanner.hasNextLine()) {
            String line = scanner.nextLine();
            while (line != null) {
               String word = scanner.next();
               addWord(word, linecount);
            }
            linecount++;

         }
      } catch (FileNotFoundException e) {
         e.printStackTrace();
      }
   }
}

例外のスタックトレースは

java.lang.NullPointerException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at edu.rice.cs.drjava.model.compiler.JavacCompiler.runCommand(JavacCompiler.java:27‌​1)

解決方法は?

これは while のループがおかしい。

while (scanner.hasNextLine()) {
    String line = scanner.nextLine();
    while (line != null) {
       String word = scanner.next();
       addWord(word, linecount);
    }
    linecount++;
}

入力ファイルが

a
b

次に scanner.nextLine() は戻り値 a であれば scanner.next() を返します。 b というのも nextLine は次のエンドラインで区切られた文字列を返します。 next は、入力ファイルから次のトークンを返します。これは本当にあなたが望むことなのでしょうか?私はこれを試してみることをお勧めします。

while (scanner.hasNextLine()) {{
    String word = scanner.nextLine();
    addWord(word, linecount);

    linecount++;
}

この方法は、1行に1単語しかない場合のみ有効であることに留意してください。もし1行に複数の単語を扱いたい場合は、少し長くなります。

while (scanner.hasNextLine()) {{
    String line = scanner.nextLine();

    Scanner lineScanner = new Scanner(line);
    while(lineScanner.hasNext()) {
        addWord(lineScanner.next(), linecount);
    }

    linecount++;
}