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: Attempted to join a non-multicast group
このエラーを修正するにはどうすればよいですか?