apache common lib를 이용해서 수행
commons-codec-1.5.jar
String hexStr = "fd00000aa8660b5b010006acdc0100000101000100010000";
byte[] bytes = Hex.decodeHex(hexStr.toCharArray());
System.out.println(new String(bytes, "UTF8"));
'java' 카테고리의 다른 글
java 오늘일자 string format YYYYMMDD (2) | 2014.03.12 |
---|---|
ORA-01861: literal does not match format string 오류발생.. (0) | 2014.02.28 |
java String <-> int 변환 (0) | 2014.02.19 |
aes256 암호화 java 샘플 (0) | 2014.01.27 |
java.security.InvalidKeyException: Illegal key size 오류 (0) | 2014.01.25 |