Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
297 views
in Technique[技术] by (71.8m points)

java - NullPointerException with Scanner

I am getting a NullPointerException on the 5th line. I am not really sure why or how to fix it...

    public static Scanner getInputScanner(Scanner console){
    Scanner inputFile = new Scanner(System.in);
    Scanner file = null;
    String userInputFile = null;
    while (file.equals(null)) {
        try {
            System.out.print("Enter input file: ");
            userInputFile = inputFile.nextLine();
            file = new Scanner(new File(userInputFile));
        } catch (FileNotFoundException e) {
            System.out.print(userInputFile + " (No such file or directory)");
            file = null;
            return file;
        }
    }
    return file;
}

Any pointers?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Although you generally compare Java objects using the equals method, null comparison is a notable exception: no Java Object compares equal to null - Java classes need to satisfy this requirement:

For any non-null reference value x, x.equals(null) should return false.

Moreover, file is null to start with, so calling any methods on it, including equals, will result in NPE.

Therefore, you need to use reference equality instead:

while (file == null) {
    ...
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...