EditText 数字范围 检查string 是不是数字
public static boolean isNumeric00(String str)
{ try{ Integer.parseInt(str); return true; }catch(NumberFormatException e)
{ System.out.println("异常:\"" + str + "\"不是数字/整数..."); return false; } }
韩梦飞沙 韩亚飞 313134555@qq.com yue31313 han_meng_fei_sha