출처 : http://ecogeo.tistory.com/129
1. hex string -> byte array
byte[] bytes = new java.math.BigInteger(hexText, 16).toByteArray();
2. byte array -> hex string
String hexText = new java.math.BigInteger(bytes).toString(16);
감사합니다 : )
'javaSkills' 카테고리의 다른 글
jar파일에서 이미지 로딩이 안되요! (0) | 2016.01.14 |
---|---|
JAVA 실시간 그래프 (0) | 2015.11.18 |
자바 int to hex (0) | 2015.11.05 |
윈도우 빌더를 이용한 GUI 구성 TIPS (0) | 2015.11.05 |
자바 Thread 다중제어 synchronized 처리(특정스레드 제어) (0) | 2015.10.07 |