Strinig to int
String str = "123";
int int = Integer.parseInt(str);
int to String
int int = 123;
String str = Integer.toString(int);
'저장용 > java' 카테고리의 다른 글
keystore 비밀번호 변경하기. (0) | 2016.05.24 |
---|---|
[java] sftp 파일삭제. (0) | 2015.07.01 |
[java] sftp 연결해서 파일 업로드. (0) | 2015.07.01 |
[java] split 사용시 참고. (0) | 2015.03.22 |