int to String
String to int
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
String to float
float f = Float.valueOf(str).floatValue();
decimal to binary
String binstr = Integer.toBinaryString(i);
decimal to hexadecimal
hexadecimal(String) to int
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;
출처: http://theeye.pe.kr/archives/457#disqus_thread
java 파일 읽어 문자열 중 한글 파악하기 (0) | 2016.10.25 |
---|---|
java 파일, 디렉토리 삭제 (java file directory delete) (0) | 2016.09.20 |
Java Map 전체 출력 (0) | 2016.08.31 |
java calendar 특정일 부터 현재일 까지 출력 (Calendar 날짜 셋팅) (1) | 2016.08.24 |
java url 호출 Get방식 (java url call example) (3) | 2016.08.01 |
댓글 영역