NumberFormatException通常是由于字符串轉(zhuǎn)換為數(shù)字時(shí)格式不正確而引發(fā)的異常。下面是一些處理NumberFormatException的有效方法:
try {
int number = Integer.parseInt("abc");
} catch (NumberFormatException e) {
System.out.println("輸入的字符串格式不正確,請(qǐng)重新輸入數(shù)字。");
}
String input = "1234";
if (input.matches("\\d+")) {
int number = Integer.parseInt(input);
} else {
System.out.println("輸入的字符串格式不正確,請(qǐng)重新輸入數(shù)字。");
}
Optional<Integer> number = Optional.ofNullable(Integer.parseInt("123abc")).orElseThrow(() -> new NumberFormatException("輸入的字符串格式不正確,請(qǐng)重新輸入數(shù)字。"));
這些方法可以幫助您有效地捕獲和處理NumberFormatException異常,確保程序能夠正確處理用戶輸入的錯(cuò)誤格式。