我正在尝试从硬盘中读取文件。文件名是“Sample.txt”,下面是我的代码。我能够编译并运行它,但收到此错误:
Exception in thread "main" java.util.InputMismatchException
at java.util.Scanner.throwFor(Scanner.java:909)
at java.util.Scanner.next(Scanner.java:1530)
at java.util.Scanner.nextDouble(Scanner.java:2456)
at Proj1GradesService.errorReport(Proj1GradesService.java:42)
at Proj1GradesClient.main(Proj1GradesClient.java:13)
我已经尝试使用While循环读取文件,现在使用try / catch,但收到了同样的错误,我不确定它究竟是什么问题。我正在尝试从服务类中读取文件,并从客户端类调用方法errorReport()。 任何帮助将不胜感激。
import java.util.*; //allows use of Scanner class
import java.io.*; //for File and IOException classes
class Proj1GradesService
{ //begin Proj1GradesService
public void pageAndColHeading(char letter) //accepts char as a parameter
{ //start pageAndColHeading
switch (letter)
{ //start switch
case 'e': //write the caption for error report
System.out.println ("Error Report - Students With Invalid GPA"); //prints Error Report
break;
case 'v': //write the caption for valid report
System.out.println ("Valid Report - Students With Valid"); //prints Valid Report
break;
default: ; //do nothing
}//end switch
} //end pageAndColHeading
public void errorReport() throws IOException
{ //start errorReport
Scanner scanFile = null;
try
{
scanFile = new Scanner (new File ("p1SampleGPAData.txt"));
}
catch (FileNotFoundException fnfe)
{
System.out.println ("wrong file name.");
}
String name; //name read from file
double gpa; //gpa read from file
int count = 0; //line #
while (scanFile.hasNext( ))
{
name = scanFile.next();
gpa = scanFile.nextDouble();
System.out.println ("Line Number: " + count + "Name: " + name + "GPA: " + gpa);
++count;
} //end while
scanFile.close();
} //end errorReport
} //end class
答案 0 :(得分:1)
考虑下面的文件结构,从打印声明
开始 name1 1.1
name2 2.2
name3 3.3
现在根据您的代码
// consume your whole line. ie name1 1.1
name = scanFile.next();
// looking for double but instead getting string ie name2
// hence throwing InputMismatchException
gpa = scanFile.nextDouble();
现在解决上述问题。您可以使用String.split()
。
// collect whole line
name = scanFile.next();
// split by one or more whitespace OR use your delimiter
String[] str = name.split("\\s+");
// gives name
String actName = str[0];
// gives gpa, throws NumberFormatException if str[1] is not double value
double gpa = Double.parseDouble(str[1]);
我希望这会有所帮助。如果您需要帮助,请询问。
答案 1 :(得分:0)
通常,如果您尝试解析的内容与InputMismatchException
期望的格式不匹配,则会引发Scanner
。
因此,在这种情况下,检查输入文件以查看您正在解析的元素是否实际上是double
。小心任何额外的空格。
答案 2 :(得分:0)
这很可能是您的数据与您的程序实际预期不匹配的问题。 您需要重新检查文件结构。
当堆栈跟踪显示为nextDouble
时,问题在文件中是非双重的,其中scanner
正在推出双倍。
答案 3 :(得分:0)
在不知道您的输入文件是什么样的情况下,发生此错误的原因是您尝试将字符数据读入double
,并且正在读取的字符不是双倍的。
确保您正在阅读的所有数据都采用您期望的格式。
如果这是我,我会将整个数据读入一个字符串,然后尝试将这些字符串转换成双字符串,这样我就可以在try/catch
中包围该语句,然后适当地处理它。