728x90

1. 숫자를 문자열로 바꾸기

int i = 639;

String str = String.valueOf(i);

String str = Integer.toString(i);

String str = i.toString();

2. 문자열을 숫자로 바꾸기

String str = "639;

int i = Integer.valueOf(str).intValue();

int i = Integer.parseInt(str);

long i = Long.parseLong(str)

double j = Double.valueOf(str).doubleValue();

3. 기타 형변환

Float를 Integer로 바꾸기

float f = 3.25;

int i = (int)f;

double d = (double) i; // 플로트형

Object를 int 타입으로 형변환 하기

String 으로 바꾼 후 int로 형변환 한다.

Integer.parseInt(vector.elementAt(0).toString());

출처 : http://allinfo.tistory.com/1110

728x90

'JAVA' 카테고리의 다른 글

For input string: ""  (0) 2012.07.29
literal does not match format string  (0) 2012.07.29
Package name must have at least two identifiers  (0) 2012.07.29
안드로이드 개요  (0) 2012.07.29
Math.random()  (0) 2012.07.29

+ Recent posts