Java BufferedReader错误:NullPointerException

时间:2015-11-29 11:50:45

标签: java bufferedreader

我有一个小小的任务,我似乎被困在了。该应用程序被认为是一个测验程序,它从文本文件中读取问题和答案,并将它们存储为闪存卡。我的问题是我的缓冲读取器在尝试从文件中读取时似乎返回了nullPointer异常。我不确定为什么会这样。我将提供所有代码并以粗体突出显示错误。在做了一些调试之后,我发现readLine方法返回null。有什么想法吗?非常感谢。错误在 String [] line = getLine()。split(":");

文本文件的格式为问题:answer

import java.io.IOException;
import java.util.ArrayList;
import java.util.Scanner;

public class Quiz {
    private ArrayList<FlashCard> flashCards;
    public static void main(String[] args){
        Quiz quiz1 = new Quiz();
    }
    public Quiz(){
        FlashCardReader cardReader = new FlashCardReader();
        try {
            if(cardReader.isReady()==true){
            flashCards = cardReader.getFlashCards();
            play();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    private void play(){
        Scanner userInput = new Scanner(System.in);
        String answer = userInput.nextLine();
        for(FlashCard card: flashCards){

            System.out.println(card.getQuestion());
            System.out.println("********************");
            sleep(10000);
            System.out.println("Enter your answer:");
            answer = userInput.nextLine();
            if(card.getAnswer() == answer){
                System.out.println("Correct.");
            }else{
                System.out.println("Incorrect. The correct answer is " +     card.getAnswer() + ".");
            }

        }
    }
    private void sleep(int x){
        try {
            Thread.sleep(x);
        } catch(InterruptedException ex) {
            Thread.currentThread().interrupt();
        }
    }
}




import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;

public class FlashCardReader {
    BufferedReader reader;
    public FlashCardReader(){
        try {
            reader = new BufferedReader(new FileReader("Questions.txt"));
        } catch (FileNotFoundException e) {
            System.err.println(e.toString());
        }


    }
    public String getLine() throws IOException{
        return reader.readLine();
    }
    public Boolean isReady() throws IOException{
        return reader.ready();
    }
    public ArrayList<FlashCard> getFlashCards(){
        ArrayList<FlashCard> flashcards = new ArrayList<FlashCard>();
        try {
            for(int i = 1; i <= reader.lines().count(); i++){
                **String[] line = getLine().split(":");**
                System.out.println(line[0]);
                flashcards.add(new FlashCard(line[0],line[1]));
            }
        } catch (IOException e) {
            System.err.println(e);
            e.printStackTrace();
        }
            return flashcards;

    }
}




public class FlashCard {
    private String question;
    private String answer;
    public FlashCard(String question, String answer){
        this.question = question;
        this.answer = answer;
    }
    public String getQuestion(){
        return question;
    }
    public String getAnswer(){
        return answer;
    }
}

1 个答案:

答案 0 :(得分:0)

如何将for循环更改为while循环以避免null条件。由于您无法确定代码是否按照您的预期从第一行开始,因此将i指定为1。

String lines ;
while((lines = getLine()) != null){
                String[] lineArray = lines.split(":");
                System.out.println(lineArray[0]);
                flashcards.add(new FlashCard(lineArray[0],lineArray[1]));
            }
相关问题