일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- error
- 이클립스
- 도서
- Report Designer
- JavaScript
- 튜닝
- 오류
- Excel
- 에러
- 함수
- 기타소득
- JEUS
- java
- 자바
- Eclipse
- Book
- 태그를 입력해 주세요.
- MIP
- 한글
- DB
- 데이터베이스
- 회계
- 성능
- oracle
- 마이플랫폼
- 엑셀
- Tomcat
- 오라클
- miplatform
- 톰캣
Archives
- Today
- Total
어느 가을날의 전환점
JAVA|데이터 형변환 본문
int to String
String to int
double to String
long to String
float to String
String to double
String to long
String to float
decimal to binary
decimal to hexadecimal
hexadecimal(String) to int
ASCII Code to String
Integer to ASCII Code
Integer to boolean
boolean to Integer
#출처: http://theeye.pe.kr/184
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;
#출처: http://theeye.pe.kr/184
'Development' 카테고리의 다른 글
HADOOP|Apache™ Hadoop™(아파치 하둡) (0) | 2011.11.16 |
---|---|
JAVA|java 패키지소스와 jdbc드라이버 사용해 리눅스에서 명령어로 실행하는 방법 (0) | 2011.11.15 |
JAVA|개발자가 놓치기 쉬운 자바의 기본원리 (0) | 2011.07.26 |
개발|뼈속까지 개발자 - 프로그래머에 대한 불편한 진실(?) (0) | 2011.07.06 |
EXCEL|엑셀 2007에서 매크로 및 VBA 개발 기능 활성화 하기 (0) | 2011.01.13 |
Comments