public static boolean checkIsIntegerNumber(String str){
        if(str == null || "".equals(str)){
            return false;
        }
        String regex2 = "^-?\\d+$";
        Pattern p = Pattern.compile(regex2);
        Matcher matcher = p.matcher(str);
        return matcher.find();
    }


String regex2 = "^-?\\d+$"; 匹配以数字开头和以数字结尾的字符串,-?表示可存在负号,也可以不存在负号


 或者

public static boolean checkIsIntegerNumber2(String str){
        if(str == null || "".equals(str)){
            return false;
        }
        String regex2 = "-?\\d+";
        Pattern p = Pattern.compile(regex2);
        Matcher matcher = p.matcher(str);
        return matcher.matches();
    }

返回时使用的是Matcher的matches()方法,该方法是与整个字符串进行匹配,所以表达式里面,不需要加上以数字开头和结尾的^$了。

而Matcher的find()方法,是尝试与给定字符串的部分进行匹配,如果匹配上,可以返回匹配的位置以及匹配到的字符串,继续执行find()方法,将继续匹配后面的字符串