java 형변환 모음
JAVA / 2011. 4. 6. 13:33
[TextView to Double]
TextView xDoubleA = Double.parseDouble(xViewA.getText());
** xViewA 값은 무조건 숫자형식이여야함. 아닌경우 Exception이 발생.
[int to String]
TextView xDoubleA = Double.parseDouble(xViewA.getText());
** xViewA 값은 무조건 숫자형식이여야함. 아닌경우 Exception이 발생.
[int 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]
[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;
[Boolean to string]
boolean theValue = true;
//boolean to String conversion
String theValueAsString = new Boolean(theValue).toString();
System.out.println(theValueAsString);
[Boolean to Integer]
int i = (b)? 1 : 0;
[Boolean to string]
boolean theValue = true;
//boolean to String conversion
String theValueAsString = new Boolean(theValue).toString();
System.out.println(theValueAsString);
'JAVA' 카테고리의 다른 글
세션이 생성되고 관리되는 과정 (3) | 2011.08.12 |
---|---|
중복로그인 체크 (2) | 2011.08.12 |
자바 iBATIS 결과를 XML 리턴받기 : xmlResultName , java , xml (1) | 2011.04.06 |
태그 제거 정규식 (2) | 2011.03.16 |
이미지 태그 SRC 경로 추출 (3) | 2011.03.16 |
[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]