顺序读取文件时出现NumberFormatException?

时间:2019-04-17 13:28:17

标签: java file-io bufferedinputstream

基本上,该程序的目的是将学生信息写入文件并从同一文件读取。该程序包括一个if语句,以告知学生是否处于良好状态或学术试用期,并分别提供相应的文件(goodstanding.txt和probation.txt)。如果我注释掉goodstanding.txt的读取逻辑,该程序将运行文件,但对我来说,除了文件路径外,它们似乎几乎完全相同。我浏览了其他问题,但其中大多数似乎与错误的类型转换有关。它引发的特定错误是NumberFormatException For input string: ""行上的ID = Integer.parseInt(array[0]);

这是写逻辑:

if(GPA >= 2.0) //If GPA >= 2.0, write to good standing file. This is 
               identical to probation writer, but causes an issue somewhere
{
     String result = ID + "," + fname + " " + lname + "," + GPA;
     OutputStream out = new BufferedOutputStream(Files.newOutputStream(good, 
     StandardOpenOption.CREATE));
     BufferedWriter wt = new BufferedWriter(new OutputStreamWriter(out));
     wt.write(result, 0, result.length()); //Write to file from position 0 to 
                                        length
     wt.newLine();
     System.out.println("Please enter next WIN or 999 to quit: ");
     ID = input.nextInt();
     input.nextLine();
     wt.close();
}
     if(GPA < 2.0) //If GPA < 2.0, write to probation file {
     String result = ID + "," + fname + " " + lname + "," + GPA;
     OutputStream out = new 
                   BufferedOutputStream(Files.newOutputStream(probation, 
                   StandardOpenOption.CREATE));
     BufferedWriter wt = new BufferedWriter(new OutputStreamWriter(out));
     wt.write(result, 0, result.length());
     wt.newLine();
     System.out.println("Please enter next WIN or 999 to quit: ");
     ID = input.nextInt();
     input.nextLine();
     wt.close();
}

读取逻辑:

try
{
    while(line != null)
{
    array = line.split(",");
    ID = Integer.parseInt(array[0]);
    name = array[1];
    GPA = Double.parseDouble(array[2]);
    double ahead = GPA - 2;
    System.out.println("WIN: " + ID + " | " + " Name: " + name + " |" + " GPA                 
                        = " + GPA + " | Ahead by " + ahead);
    line = reader.readLine(); 
}
}
catch(NullPointerException e)
    {System.out.println("NullPointerException occurred");}
reader.close();


InputStream input2 = new
                     BufferedInputStream(Files.newInputStream(probation));
BufferedReader reader2 = new BufferedReader(new InputStreamReader(input2));
String line2 = reader2.readLine();
System.out.println();
System.out.println("---------------------------");
System.out.println("--Academic Probation List--");
System.out.println("---------------------------");
try{
while(line2 != null)
{
    array = line2.split(",");
    ID2 = Integer.parseInt(array[0]);
    name2 = array[1];
    GPA2 = Double.parseDouble(array[2]);
    double fallShort = 2 - GPA2;
    System.out.println("WIN: " + ID2 + " | " + " Name: " + name2 + " |" + " 
                       GPA = " + GPA2 + " | Behind by " + fallShort);
    line2 = reader2.readLine();
}
}
catch(NullPointerException e)
{e.printStackTrace();}
reader.close();

我也尝试在ID上使用trim()方法,但仍然存在异常。我是否需要阅读更多有关该概念的解释?

1 个答案:

答案 0 :(得分:1)

我认为NumberFormatException For input string: ""是错误消息,因为您无法将空字符串解析为int。

您的问题至少有两个原因,要么文件中有一些空白行,要么其中一行以逗号开头。通过执行类似的操作来检查或忽略此类行:

....
    while (line != null) {
        if(!line.startsWith(",") && !line.isEmpty()){
            array = line.split(",");
            ID = Integer.parseInt(array[0]);
            name = array[1];
            GPA = Double.parseDouble(array[2]);
            double ahead = GPA - 2;
            System.out.println("WIN: " + ID + " | " + " Name: " + name + " |" + " GPA = " + GPA + " | Ahead by " + ahead);
        }
        line = reader.readLine();
    }