Category Archives: 허접프로그래머

JAVA에서 자주 쓰이는 형변환

자바에서 자주 쓰이는 형변환 시리즈를 모아보았다. 매번 까먹는 관계로 적어놔야 한다는;;;
출처는 이곳 입니다.

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();

Integer to ASCII Code

int i = (int) c;

Integer to boolean

boolean b = (i != 0);

boolean to Integer

int i = (b)? 1 : 0;

 

[iBatis] iBatis 매핑구문에서 비교문(<>) 사용하기

iBatis 매핑 구문을 작성하다 보면 다음과 같은 에러를 만날 수 있다.

사용자 삽입 이미지
WHERE절의 NO값이 10보다 작은것을 가져올려고 했을 뿐인데 문법 오류를 낸다. 이유인 즉슨 <는 태그(Tag)의 시작인데 왜 끝이 없냐고 뭐라 한다-_-; 멍청한 놈아~

하지만 어디까지는 이것은 XML이니 XML규칙을 따르는것이 맞는 것일 것이다. 해결 방법은 두가지가 있다.

1. CDATA로 감싸주는 방법
[code]<sqlMap>
  <select id=”iBatis”>
    <![CDATA[
      SELECT * FROM IBATIS_DATA
      WHERE NO < 10
    ]]>
  </select>
</sqlMap>[/code]

2. <를 &lt;로 치환하는 방법. 마찬가지로 >는 &gt;로 치환하는것을 권장하고 있으나 그냥 >그대로 써도 무관하다.
[code]<sqlMap>
  <select id=”iBatis”>
    SELECT * FROM IBATIS_DATA
    WHERE NO &lt; 10
  </select>
</sqlMap>[/code]