1、用JAVA自带函数 1、用java自带函数 public static boolean isNumeric(String str){ for (int i = str.length();--i>=0;){ if (!Character.isDigit(str.charAt(i))){ return false; } } return true; } 1. 2. 3. 4. 5. 6. 7. 8. 2、使用正则表达式 public static boolean isNumeric(Stri...