본문 바로가기
JAVA

[ JAVA ] 자바 소켓 통신 null 값 보내기

by 정윤재 2009. 5. 17.

핵심은 빨간색 부분이다.  

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


댓글