gpt4 book ai didi

java - NumberFormatException 指向整数的 double 输入

转载 作者:行者123 更新时间:2023-12-01 11:29:55 34 4
gpt4 key购买 nike

我目前正在运行一个票务发行程序,我认为该程序已经完成,但是在我创建了一些票务预订并将其写入文本文件后,我尝试在第二次或第三次输入后运行,它给了我这个异常:

Exception in thread "main" java.lang.NumberFormatException: For input string: "59.75"
at java.lang.NumberFormatException.forInputString(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at TicketBoxProject.TicketBoxMain.main(TicketBoxMain.java:94)
try {
br = new BufferedReader(new FileReader("BookingsList.txt"));
FileReader fr = new FileReader("BookingsList.txt");
br = new BufferedReader(fr);

String str;
while ((str = br.readLine()) != null) {
Bookings booking = new Bookings(); // single job of class
// JobList
booking.setFName(str);
str = br.readLine();
booking.setSName(str);
str = br.readLine();
booking.setHouseNo(str);
str = br.readLine();
booking.setStreet(str);
str = br.readLine();
booking.setTown(str);
str = br.readLine();
booking.setPostCode(str);
str = br.readLine();
booking.setEmail(str);
str = br.readLine();
booking.setCardType(str);
str = br.readLine();
booking.setCardNumber(Long.parseLong(str));
str = br.readLine();
booking.setCardExpiryDate(str);
str = br.readLine();
booking.setCardSecurityNo(Integer.parseInt(str));
str = br.readLine();
booking.setTicketsReqd(Integer.parseInt(str));
str = br.readLine();
booking.setTotal(Double.parseDouble(str));
str = br.readLine();
booking.setRefNo(Integer.parseInt(str));
str = br.readLine();
booking.setDate(str);
str = br.readLine();
booking.setArtist(str);
str = br.readLine();
booking.setVenue(str);
str = br.readLine();
booking.setCity(str);
str = br.readLine();

bookings.add(booking); // add to arraylist
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
br.close();

java:94 指向 setTicketsReqd 行,但是 "59.75" 应该引用 setTotal下面一行,正如您从代码中看到的,我已确保 TicketsReqd 是一个整数,而 Total 是一个 Double。如果有人知道除了从文本文件中删除文件之外的快速修复,我将不胜感激,因为我无法理解为什么错误消息告诉我输入“59.75”有错误(这是以前编写的总数) -to-textfile booking),然后指向不同的代码行。

最佳答案

在您的代码中,我统计了对 readLine() 方法的 19 次调用,它们都是 while 循环条件和主体的一部分循环的。但我只看到在 Bookings 实例上调用了 18 个 setXyz 方法。

循环中的最后一个 readLine() 调用将被忽略;它被 while 循环条件下对 readLine() 的调用所取代。它将读取下一个条目的第一行并忽略它。然后,第一个 readLine 调用将读取预订中的第二行内容。这可能会导致“相差一”错误,因此调用 Integer.parseInt 的行现在正在读取 59.75

删除最后一个 readLine() 调用。

关于java - NumberFormatException 指向整数的 double 输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30492207/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com