发布网友 发布时间:2022-05-11 11:58
共1个回答
热心网友 时间:2023-10-12 01:37
可以用异常来做校验/*** 判断字符串是否是整数*/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) {