例如str1="张三" str2="12.5"明显str2能转为数字,str1不能有没有函数能够进行判断,返回true或者false ?
Strings.isNumber
算了,已经用了这个了
try { Integer.parseInt(str); return true; } catch (NumberFormatException e) { return false; }