Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在收到Multicasting一个:MulticastSocketDatagramPacket
Multicasting
MulticastSocket
DatagramPacket
buffer = new byte[BUFFER_SIZE]; packet = new DatagramPacket(buffer, BUFFER_SIZE); socket.receive(packet);
所以我必须制作一个具有特定长度的字节数组,我不喜欢这样限制可以通过我的网络传输的数据大小。有什么办法Multicasting可以避免这个限制?
网络已经限制了传输大小。程序中的缓冲区大小是您最不必担心的。在您无法完全控制的网络上,普遍接受的 UDP 数据报限制是 534 字节。