彡Aiuo了巛
//判断是否为数字的方法
public boolean isNumeric(String str){
int temp = 0;
for(int i = 0; i < str.length(); i++){
//判断不能含有多个小数点
if(str.charAt(i) == '.' && temp == 0){
temp++;
continue;
}
//判断字符串的每一个字符不能为数字以外的字符
if(!Character.isDigit(str.charAt(i))){
return false;
}
//判断字符串的最后一位不能为小数点
if(str.charAt(str.length() - 1) == '.'){
return false;
}
}
return true;
}