ByteBuffer buffer = ByteBuffer.allocate(8); // 리틀엔디안(Little Endian) 으로 변환 buffer.order(ByteOrder.LITTLE_ENDIAN); private final static String IP = "192.168.0.8"; private final static int PORT = 9050; public static void main(String[] args) throws IOException { InetAddress ia = InetAddress.getByName(IP); DatagramSocket ds = new DatagramSocket(); // Java에서 둘 이상의 바이트 배열 연결 ByteArrayOutputStream outpu..