尝试从控制台输入读取日期时出现 NumberFormatException
NumberFormatException when trying to read dates from console input
所以我试图从日期列表中查找最新日期,但我一直收到 NumberFormatException。有什么办法可以解决吗?
import java.util.*;
public class Date
{
private String date;
private int day;
private int month;
private int year;
public Date(String date)
{
String [] newDate = date.split(" ");
this.day = Integer.parseInt(newDate[0]);
this.month = Integer.parseInt(newDate[1]);
this.year = Integer.parseInt(newDate[2]);
}
public boolean isOnOrAfter(Date other)
{
if(this.day < other.day)
{
return true;
}
else if(this.day == other.day && this.month < other.month)
{
return true;
}
else if(this.day == other.day && this.month == other.month && this.year < other.year)
{
return true;
}
return false;
}
public String toString()
{
return day + "/" + month + "/" + year;
}
public static void main(String [] args)
{
Scanner in = new Scanner(System.in);
System.out.print("How many dates: ");
int num = in.nextInt();
System.out.println("Enter " + num + " dates: ");
String [] dates = new String[num];
for(int i = 0; i < dates.length; i++)
{
dates[i] = in.nextLine();
}
Date latest = new Date(dates[0]);
for(int i = 0; i < dates.length; i++)
{
Date newDates = new Date(dates[i]);
if(latest.isOnOrAfter(newDates))
{
latest = newDates;
}
}
System.out.println(latest);
}
}
我认为这只是一个小问题,但我似乎找不到它。提前致谢。
我有一个检查最新日期的方法,代码的逻辑对我来说似乎没问题,如果您发现逻辑中有任何问题,请告诉我。
日期将一次输入一行,例如:
1 1 1890
1 1 2000
2 1 2000
30 12 1999
输出应该是 2/1/2000。
NumberFormatException
是由 Integer.parseInt() 试图解析不是整数的字符串引起的。
您的示例输入包含连续的 space,如果您将输入拆分为 space,并且输入中有多个连续的 space,则结果数组将包含空字符串。 Integer.parseInt() 正在尝试解析这些空字符串之一,这导致了异常。
而不是
String [] newDate = date.split(" ");
使用
String [] newDate = date.split(" +");
这会将多个 space 视为拆分标记,并且 return 仅考虑非 space 字符。
这里NumberFormatException
有两个原因:
1.You 在您输入的日、月和年之间有多个空格。
2。扫描仪的 nextInt
不消耗换行符。因此,您需要在其后包含一个虚拟 nextLine
。您可以阅读更多相关信息 here。
int num = in.nextInt();
in.nextLine(); //To consume the new line after entering the number of dates
System.out.println("Enter " + num + " dates: ");
String [] dates = new String[num];
...
所以我试图从日期列表中查找最新日期,但我一直收到 NumberFormatException。有什么办法可以解决吗?
import java.util.*;
public class Date
{
private String date;
private int day;
private int month;
private int year;
public Date(String date)
{
String [] newDate = date.split(" ");
this.day = Integer.parseInt(newDate[0]);
this.month = Integer.parseInt(newDate[1]);
this.year = Integer.parseInt(newDate[2]);
}
public boolean isOnOrAfter(Date other)
{
if(this.day < other.day)
{
return true;
}
else if(this.day == other.day && this.month < other.month)
{
return true;
}
else if(this.day == other.day && this.month == other.month && this.year < other.year)
{
return true;
}
return false;
}
public String toString()
{
return day + "/" + month + "/" + year;
}
public static void main(String [] args)
{
Scanner in = new Scanner(System.in);
System.out.print("How many dates: ");
int num = in.nextInt();
System.out.println("Enter " + num + " dates: ");
String [] dates = new String[num];
for(int i = 0; i < dates.length; i++)
{
dates[i] = in.nextLine();
}
Date latest = new Date(dates[0]);
for(int i = 0; i < dates.length; i++)
{
Date newDates = new Date(dates[i]);
if(latest.isOnOrAfter(newDates))
{
latest = newDates;
}
}
System.out.println(latest);
}
}
我认为这只是一个小问题,但我似乎找不到它。提前致谢。
我有一个检查最新日期的方法,代码的逻辑对我来说似乎没问题,如果您发现逻辑中有任何问题,请告诉我。
日期将一次输入一行,例如:
1 1 1890
1 1 2000
2 1 2000
30 12 1999
输出应该是 2/1/2000。
NumberFormatException
是由 Integer.parseInt() 试图解析不是整数的字符串引起的。
您的示例输入包含连续的 space,如果您将输入拆分为 space,并且输入中有多个连续的 space,则结果数组将包含空字符串。 Integer.parseInt() 正在尝试解析这些空字符串之一,这导致了异常。
而不是
String [] newDate = date.split(" ");
使用
String [] newDate = date.split(" +");
这会将多个 space 视为拆分标记,并且 return 仅考虑非 space 字符。
这里NumberFormatException
有两个原因:
1.You 在您输入的日、月和年之间有多个空格。
2。扫描仪的 nextInt
不消耗换行符。因此,您需要在其后包含一个虚拟 nextLine
。您可以阅读更多相关信息 here。
int num = in.nextInt();
in.nextLine(); //To consume the new line after entering the number of dates
System.out.println("Enter " + num + " dates: ");
String [] dates = new String[num];
...