int → String
String str = Integer.toString(i);
String str =""+i;
String → int
int i = Integer.parseInt(str);
int i = Integer.valueOf(str).intValue();
double → String
String str = Double.toString(d);
long → String
String str = Long.toString(l);
float → String
String str = Float.toString(f);
String → double
double d = Double.valueOf(str).doubleValue();
String → long
long l = Long.valueOf(str).longValue();
long l = Long.parseLong(str);
String → float
float f = Float.valueOf(str).floatValue();
decimal → binary
String binstr = Integer.toBinaryString();
decimal → hexadecimal
String hexstr = Integer.toString(i,16);
String hexstr = Integer.toHexString(i);
Integer.toHexString( 0x10000 | i ).substring(1).toUpperCase());
hexadecimal(String) → int
int i = Integer.valueOf("B8DA3",16).intValue();
int i = Integer.parseInt("B8DA3",16);
ASCII Code → String
String char = new Character((char)i).toString();
Integer → ASCII Code
int i = (int) c;
Integer → boolean
boolean b = (i!=0);
boolean → Integer
int i = (b) ? 1 : 0;
'기타 ETC > Android Studio' 카테고리의 다른 글
안드로이드 사운드 재생 방법 및 버튼 색깔 바꾸기입니다. (0) | 2020.06.24 |
---|---|
안드로이드 앱: 국기 맞추기 퀴즈 앱 만들기 소스코드 (0) | 2020.06.24 |
안드로이드 영수증 PDF 만들기 (0) | 2020.03.19 |
EditText에 숫자만 입력받기 (0) | 2020.03.19 |
Android Studio PDF Document(Add Image in PDF) (0) | 2020.03.18 |