如何判断一个字符串中是否都是数字


方法如下:调用isDigit方法

         方法1:

        public boolean isDigit1(String strNum) {    
    return strNum.matches("[0-9]{1,}");    

方法2:
public boolean isDigit(String strNum) {    
    Pattern pattern = Pattern.compile("[0-9]{1,}");    
    Matcher matcher = pattern.matcher((CharSequence) strNum);    
    return matcher.matches();  
}  

你可能感兴趣的:(java基础知识)