BLOG main image
분류 전체보기 (33)
HTML5 (0)
Android (0)
WEB (7)
JAVA (9)
H/W (1)
TIP (14)
모바일(안드로이드)TIP (1)
보관함 (0)
My Aura (1)
test (0)
Visitors up to today!
Today hit, Yesterday hit
daisy rss
tistory 티스토리 가입하기!
2013. 1. 22. 11:16

자꾸 깜박한다.

저질기억력 ㅡㅜ


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;

'JAVA' 카테고리의 다른 글

asx 태그를 jsp로 저장해서 사용하는 방법  (0) 2013.01.22
팝업제어스크립트  (0) 2013.01.22
cookie  (0) 2013.01.22