자바에서 자주 쓰이는 형변환 시리즈를 모아보았다. 매번 까먹는 관계로 적어놔야 한다는;;;
출처는 이곳 입니다.
int to String
String to int
double to String
long to String
float to String
String to double
String to long
String to float
decimal to binary
decimal to hexadecimal
hexadecimal(String) to int
ASCII Code to String
Integer to ASCII Code
Integer to boolean
boolean to Integer
출처는 이곳 입니다.
int to String
String str = Integer.toString(i);
String str = "" + i;
String to int
int i = Integer.parseInt(str);
int i = Integer.valueOf(str).intValue();
double to String
String str = Double.toString(d);
long to String
String str = Long.toString(l);
float to String
String str = Float.toString(f);
String to double
double d = Double.valueOf(str).doubleValue();
String to long
long l = Long.valueOf(str).longValue();
long l = Long.parseLong(str);
String to float
float f = Float.valueOf(str).floatValue();
decimal to binary
String binstr = Integer.toBinaryString(i);
decimal to hexadecimal
String hexstr = Integer.toString(i, 16);
String hexstr = Integer.toHexString(i);
Integer.toHexString( 0x10000 | i).substring(1).toUpperCase());
hexadecimal(String) to int
int i = Integer.valueOf("B8DA3", 16).intValue();
int i = Integer.parseInt("B8DA3", 16);
ASCII Code to String
String char = new Character((char)i).toString();
Integer to ASCII Code
int i = (int) c;
Integer to boolean
boolean b = (i != 0);
boolean to Integer
int i = (b)? 1 : 0;
'IT-Consultant' 카테고리의 다른 글
CSS에서 element들을 한줄에 놓으려면? (0) | 2008.10.14 |
---|---|
CSS에서 element들을 한줄에 놓으려면? (0) | 2008.10.14 |
Java에서 자주 쓰이는 형변환 (0) | 2008.10.14 |
K2 검색서버의 k2admin 프로세스가 계속 CLOSE_WAIT, FIN_WAIT_2의 상태가 지속되면 TOMCAT을 의심해봐라. (0) | 2008.10.14 |
K2 검색서버의 k2admin 프로세스가 계속 CLOSE_WAIT, FIN_WAIT_2의 상태가 지속되면 TOMCAT을 의심해봐라. (0) | 2008.10.14 |