-
지금도 가끔 형변환을 할 때 검색을 하곤 하는데 정리를 해보려 한다.
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();Char To ASCII
int char = (int) char[0];
Integer to ASCII Code
int i = (int) c;
Integer to boolean
boolean b = (i != 0);
boolean to Integer
int i = (b)? 1 : 0;'개발 > JAVA' 카테고리의 다른 글
jpa join시 join column과 join table 구분 (0) 2019.07.09 이름 규칙 (0) 2019.07.08 map 데이터 전체 읽으며 sql 처리시 에러 java.util.ConcurrentModificationException: null (0) 2019.04.08 String to hex을 hex byte array (0) 2019.03.22 이클립스에서 기본 클래스 을(를) 찾거나 로드할 수 없습니다 가 뜰 때 (0) 2019.03.21 댓글