java 바이트배열(byte array)에서 10진수 문자열(decimal) 추출하기

By | 6월 2, 2014

 

//1byte만 추출할 경우
String tagId = String.valueOf(msg[24]);
//2byte 이상을 추출할 경우
byte[] shopCdBytes = new byte[2];
System.arraycopy(msg, 25, shopCdBytes, 0, 2);
String shopCd = new BigInteger(shopCdBytes).toString(10);

 
 
 
 

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments