マルチキャストを介してlongを送信しようとしています。文字列を送信できるため、接続は機能するはずです。
これは私のサーバーサイドコードです:
currentServerStatusId = Server.getServerStatusVersionId();
buf = ByteBuffer.allocate(8).putLong(currentServerStatusId).array(); //long should be 8 bytes in Java
InetAddress group = InetAddress.getByName(multicastAddress);
DatagramPacket packet = new DatagramPacket(buf, buf.length, group, port);
socket.send(packet);
これはクライアント側(受信者)にあります:
byte[] buf = new byte[256];
serverIpPacket = new DatagramPacket(buf, buf.length);
System.out.println("waiting to receive");
multicastSocket.receive(serverIpPacket);
receivedIp = serverIpPacket.getAddress().getHostAddress();
currentServerStatusId = ByteBuffer.allocate(8).put(serverIpPacket.getData()).getLong();
//new String(serverIpPacket.getData(), 0, serverIpPacket.getLength());
System.out.println("received current ServerStatusId: " + currentServerStatusId);
これにより、BufferUnderflowExceptionが発生します。どうやら、レシーバー/クライアント側のallocateメソッドでサイズを8から16に2倍にすると機能するようです。しかし、その後、私のテスト値の代わりに0を返します(68763のようなもの)