gpt4 book ai didi

java.io.IOException : Attempted to join a non-multicast group 异常

转载 作者:行者123 更新时间:2023-11-29 03:45:08 25 4
gpt4 key购买 nike

我正在开发 Android 3.1 平板电脑应用程序。

它有一个MulticastSocket:

public MulticastClient(String serverName, int port, Handler serviceHandler) throws IOException
{
super(serverName);

socket = new MulticastSocket(8888);
InetAddress group = InetAddress.getByName("203.0.113.0");
socket.joinGroup(group);

this.mServiceHandler = serviceHandler;
}

这里出现错误:

InetAddress group = InetAddress.getByName("203.0.113.0");

这是错误:

java.io.IOException:尝试加入非多播组

我该如何修复这个错误?

最佳答案

如前所述here , 多播地址有一个严格和强制的范围。

The multicast addresses are in the range 224.0.0.0 through 239.255.255.255.

关于java.io.IOException : Attempted to join a non-multicast group 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11326813/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com