Integer mvalue = Integer.valueOf(m); // String m을 Integer로 변환
int month = mvalue.intValue(); // Integer mvalue를 int로 변환
int month = mvalue.intValue(); // Integer mvalue를 int로 변환
valueOf(String s)
Returns an Integer
object holding the value of the specified String
.
'Programming > java' 카테고리의 다른 글
[PUSH] iOS 푸쉬 서비스 (0) | 2013.03.20 |
---|---|
File.mkdir()과 File.mkdirs()의 차이점 (0) | 2013.01.23 |
DAO(Data Access Object 와 VO(Value Object) (0) | 2012.09.28 |
Bean Copy:BeanUtils copyProperties ,PropertyUtils copyProperties (0) | 2012.09.28 |
업로드한 엑셀 파일 데이터 읽어오기 (0) | 2012.09.20 |