핵심은 빨간색 부분이다.
byte[] results = new byte [ 32 ];
ByteBuffer buffer = ByteBuffer.allocate(32);
buffer.order(ByteOrder.LITTLE_ENDIAN);
ByteBuffer bt = ByteBuffer.allocate(8);
buffer.put(bt);
results = buffer.array();
results = buffer.array();
try{
dos.write(results,0,results.length);
dos.flush();
}catch(Exception e3){
e3.printStackTrace();
}
'JAVA' 카테고리의 다른 글
자바 long 형 계산과 NumberFormat (,) 붙이기 (0) | 2009.06.09 |
---|---|
자바 현재 날짜 구하기 및 계산 (0) | 2009.06.02 |
[ JAVA ] byte[] 로 받은 데이터 String 으로 바꾸기 (3) | 2009.05.15 |
리눅스에서 class 파일 실행시 Exception in thread "main" java.lang.NoClassDefFoundError (3) | 2009.05.15 |
[ JAVA ] 자바 한글 캐릭터 셋 찾기 (0) | 2009.04.29 |
댓글