java如何判断字符串是否是整型数字?

代码示例:

/**
     * 判断字符串是否为数字
     */
    public static boolean isNumeric(String str){ 
        Pattern pattern = Pattern.compile("[0-9]*"); 
        Matcher isNum = pattern.matcher(str);
        return isNum.matches();  
     }

测试:

public static void main(String[] args) {
		String str = "11";
		String str1 = "11sdf";
		System.out.println(isNumeric(str));
		System.out.println(isNumeric(str1));
	}

输出结果:

true
false

以上就是java判断字符串是否是整型数字的详细内容,更多请关注其它相关文章!