1. JAVA에 포함된 기능을 사용하세요.
public static boolean isNumeric(String str){ for (int i = 0; i < str.length(); i++){ System.out.println(str.charAt(i)); if (!Character.isDigit(str.charAt(i))){ return false; } } return true; }
2. 우선 정규식을 사용하세요. , java.util.regex.Pattern 및 java.util.regex.Matcher
public boolean isNumeric(String str){ Pattern pattern = Pattern.compile("[0-9]*"); Matcher isNum = pattern.matcher(str); if( !isNum.matches() ){ return false; } return true; }
3을 가져옵니다. 위의 세 가지 방법 중 org.apache.commons.lang
org.apache.commons.lang.StringUtils; boolean isNunicodeDigits=StringUtils.isNumeric("aaa123456789"); 下面的解释: isNumeric public static boolean isNumeric(String str)Checks if the String contains only unicode digits. A decimal point is not a unicode digit and returns false. null will return false. An empty String ("") will return true. StringUtils.isNumeric(null) = false StringUtils.isNumeric("") = true StringUtils.isNumeric(" ") = false StringUtils.isNumeric("123") = true StringUtils.isNumeric("12 3") = false StringUtils.isNumeric("ab2c") = false StringUtils.isNumeric("12-3") = false StringUtils.isNumeric("12.3") = false Parameters: str - the String to check, may be null Returns: true if only contains digits, and is non-null
을 사용하세요. , 두 가지 방법이 더 유연합니다.
첫 번째와 세 번째 방법은 음수 기호 "-"가 없는 숫자만 확인할 수 있습니다. 즉, 음수 -199를 입력하면 출력 결과가 false가 됩니다.
#🎜 🎜# 그리고 두 번째 방법은 정규식을 수정하여 음수를 확인하는 것입니다. 정규식을 "^-?[0-9]+"로 변경하고 "-?[0-9]+.?[ 0 -9]+"는 모든 숫자와 일치합니다. 자바 지식을 더 보려면java기본 튜토리얼
을 따르세요.위 내용은 Java에서 문자열이 정수인지 확인하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!