因此,我使用nextInt()在命令行中从用户获取整数输入。但是,我的问题是;当用户没有输入整数时,即只输入enter而不输入任何内容,nextInt()不会终止,而是继续提示用户,直到用户输入一个整数。是否有可能首先采取这一点"没有输入"作为输入,然后返回一条错误消息,说没有输入整数? 提前谢谢!
答案 0 :(得分:1)
String line = null;
int val = 0;
try {
BufferedReader is = new BufferedReader(
new InputStreamReader(System.in));
line = is.readLine();
val = Integer.parseInt(line);
} catch (NumberFormatException ex) {
System.err.println("Not a valid number: " + line);
} catch (IOException e) {
System.err.println("Unexpected IO ERROR: " + e);
}
System.out.println("I read this number: " + val);
答案 1 :(得分:0)
我假设您使用的是Scanner
。如果是这样,那么您需要指定您将使用哪个delimiter
。像这样:
Scanner scanner = new Scanner(System.in);
scanner.useDelimiter(System.getProperty("line.separator"));
while (scanner.hasNextInt()){
int i = sc.nextInt();
/** your code **/
}
答案 2 :(得分:0)
你可以尝试/捕捉。
String input = ....
try {
int x = Integer.parseInt(input);
System.out.println(x);
}
catch(NumberFormatException nFE) {
System.out.println("Not an Integer");
}
答案 3 :(得分:0)
而不是整数尝试将输入作为字符串。如果字符串为空,则应提出您提到的错误,否则将字符串转换为整数。我不知道你的程序流程是什么,所以它是一个大致的想法,根据输入需要解析字符串。在使用此方法之前,您应该确保除了整数之外没有其他内容作为输入。
答案 4 :(得分:0)
试试这个
int number;
boolean is_valid;
do {
try {
System.out.print("Enter Number :");
Scanner kbd = new Scanner(System.in);
number = kbd.nextInt();
is_valid = true;
} catch (Exception e) {
System.out.println("Invalid Integer ");
is_valid = false;
}
} while (!is_valid);