정수가 아닌 문자열 입력에 대한 java.lang.NumberFormatException 방지
"입력용" 메시지와 함께 java.lang.NumberFormatException이 발생하는 동안 문자열: "N/A"", 이는 유효한 정수를 나타내지 않는 문자열을 정수로 구문 분석하려고 시도하고 있음을 나타냅니다. 값. 이 경우 문자열 "N/A"는 정수가 아닙니다.
해결책:
이 예외를 방지하는 두 가지 접근 방식이 있습니다.
예외 처리:
try-catch 블록을 사용하여 NumberFormatException을 처리합니다. 정수가 아닌 문자열의 경우 적절한 조치를 취합니다.
try { int i = Integer.parseInt(input); } catch (NumberFormatException ex) { // Handle the exception here, e.g., print an error message or replace the non-integer value with a default value. }
정수 패턴 일치:
입력 문자열을 구문 분석하기 전에 정규식을 사용하여 유효성을 검사합니다. 정수:
String pattern = "-?\d+"; if (input.matches(pattern)) { // Checks if the string matches the pattern of an integer (including negative values) int i = Integer.parseInt(input); } else { // The input string is not an integer. Handle it appropriately. }
이러한 접근 방식 중 하나를 구현하면 유효한 정수 문자열만 반환되도록 할 수 있습니다. java.lang.NumberFormatException이 발생하지 않도록 정수로 구문 분석됩니다.
위 내용은 Java에서 정수가 아닌 문자열을 구문 분석할 때 `java.lang.NumberFormatException`을 방지하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!