[转载]java中如何判断String中的内容是否为数字?
1个回答
展开全部
可以用异常来做校验/*** 判断字符串是否是整数*/public static boolean isInteger(String value) {try {Integer.parseInt(value);
return true;
} catch (NumberFormatException e) {
return false;}}/*** 判断字符串是否是浮点数*/public static boolean isDouble(String value) {try {Double.parseDouble(value);
if (value.contains("."))
return true;
return false;
} catch (NumberFormatException e) {
return false;}}/*** 判断字符串是否是数字*/public static boolean isNumber(String value) {
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询