码迷,mamicode.com
首页 > 其他好文 > 详细

判断字符串是不是数字

时间:2016-06-10 23:12:55      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:

NumberUtils.isNumber(str)判断字符串是不是数字或者能不能转换成数字

public class StringIsNumber {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        String str = s.nextLine();
        if(NumberUtils.isNumber(str)){
            System.out.println("输入的是数字");
        }else{
            System.out.println("输入的不是数字");
        }        
        
    }
}

 NumberUtils是org.apache.commons.lang.math.NumberUtils所以看需不需要加个包

判断字符串是不是数字

标签:

原文地址:http://www.cnblogs.com/lonely-buffoon/p/5574374.html

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