Small Asteroid Blog

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

카테고리 없음

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

작은소행성☄️ 2021. 11. 30. 15:45
728x90

 

 

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

 

 

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

 

 

 

728x90
반응형