码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2018-11-01 16:56:07      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:异常   color   except   class   判断   cat   处理   mat   rac   

方法一:异常处理

    public static boolean isInteger(String str){
        
        try {
            Integer i = Integer.parseInt(str);
            return true;
        } catch (Exception e) {
            return false;
        }
    }

方法二:正则匹配

boolean isNum = str.matches("[0-9]+"); 

方法三:ascii码判断

public static boolean isInteger(String str){
    for(int i=str.length();--i>=0;){
        int chr=str.charAt(i);
        if(chr<48 || chr>57)
            return false;
    }
   return true;
}     

方法四:逐个字符进行判断

public static boolean isInteger(String str) {
        for (int i = str.length(); --i >= 0;) {
            if (!Character.isDigit(str.charAt(i))) {
                return false;
            }
        }
        return true;
    }

 

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

标签:异常   color   except   class   判断   cat   处理   mat   rac   

原文地址:https://www.cnblogs.com/syq816/p/9889967.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!