봉봉의 개인 블로그
자바(JAVA) 형 변환(String과 int) 본문
자바(JAVA) 형 변환(String과 int)
Strinig to int
String from = "123";
int to = Integer.parseInt(from);
int to String
int from = 123;
String to = Integer.toString(from);
'관련 지식' 카테고리의 다른 글
SQL이 아닌 함수(getGeneratedKeys())를 이용한 AutoIncrement 키값 가져오기 (0) | 2017.05.25 |
---|---|
MSSQL between을 이용한 날짜 검색 (0) | 2017.05.08 |
String 클래스의 유용한 메소드(함수)들 (4) | 2017.05.06 |
statement_PreparedStatement_차이점조사 (0) | 2017.04.24 |
DDL_DCL_DML조사 (0) | 2017.04.24 |
Comments