반응형
1. String to int
String num = "1";
int number = Integer.parseInt(num);
2. int to String
int number = 123;
String num = Integer.toString(number);
단, 만약 int로 변환하려는 값이 숫자가 아닌 경우에는
어떻게 예외처리를 할지 아래와 같이 고민해야 한다.
int tmp;
try {
tmp = Integer.parseInt("abc")
} catch ( NumberFormatException e ) {
tmp = 0;
}
반응형
'컴퓨터 공학 > Java' 카테고리의 다른 글
DAO, DTO, VO 개념 및 차이 (0) | 2021.09.14 |
---|---|
[Java] String to BigDecimal, BigDecimal to String 형변환 (0) | 2021.06.14 |
[JSP] JSP에서 서블릿(Servlet) 호출하기 (0) | 2021.06.11 |