본문 바로가기
카테고리 없음

Failed to complete request: java.lang.NumberFormatException: For input string: ""

by 작은소행성 2021. 11. 30.

 

 

String 변수에 숫자형태가 아닌 null이나 ""값이 할당되어 있어서 생기는 에러이다. 

 

 

if(str == null || str.trim().equals("")){
str = "0";
}

 

 

 

반응형