How can I prevent java.lang.NumberFormatException: For input string: quot;N/Aquot;?(如何防止 java.lang.NumberFormatException:对于输入字符串:“N/A?)
问题描述
在运行我的代码时,我得到一个 NumberFormatException
:
While running my code I am getting a NumberFormatException
:
java.lang.NumberFormatException: For input string: "N/A"
at java.lang.NumberFormatException.forInputString(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at java.lang.Integer.valueOf(Unknown Source)
at java.util.TreeMap.compare(Unknown Source)
at java.util.TreeMap.put(Unknown Source)
at java.util.TreeSet.add(Unknown Source)`
如何防止此异常发生?
推荐答案
"N/A"
不是整数.如果您尝试将其解析为整数,它必须抛出 NumberFormatException
.
"N/A"
is not an integer. It must throw NumberFormatException
if you try to parse it to an integer.
解析前检查或正确处理Exception
.
Check before parsing or handle Exception
properly.
异常处理
try{
int i = Integer.parseInt(input);
} catch(NumberFormatException ex){ // handle your exception
...
}
或 - 整数模式匹配 -
String input=...;
String pattern ="-?\d+";
if(input.matches("-?\d+")){ // any positive or negetive integer or not!
...
}
这篇关于如何防止 java.lang.NumberFormatException:对于输入字符串:“N/A"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何防止 java.lang.NumberFormatException:对于输入字符串:“N/A"?


基础教程推荐
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 降序排序:Java Map 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01