java判断数字类型是否为小数,可以采用正则表达式的方式来判断,以下是使用正则表达式来判断数字类型是否为小数的代码:
public void checkNumber(String str) {
if(null == str || "" == str){
System.out.println("字符串为空");
}
boolean int_flag = Pattern.compile("^-?[1-9]\d*$").matcher(str).find();
boolean double_flag = Pattern.compile("^-?([1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0)$").matcher(str).find();
if(int_flag){
System.out.println("字符串类型为int类型");
} else if(double_flag){
System.out.println("字符串类型为double类型");
} else {
System.out.println("字符串类型为其他类型");
}
}