public class String_tool { public static boolean isNumeric(String str) { for (char c : str.toCharArray()) { if (!Character.isDigit(c)) return false; } if(str.length()==0)return false; return true; } }
沒有留言:
張貼留言