この質問に関する他の回答を見てきましたが、ほとんどの場合setReuseAddress (true)
、ソケットをバインドする前に を呼び出すと述べています。しかし、私はそれを行っていますが、まだうまくいきません。誰かが私を助けてくれますか?
SocketChannel tunnel = SocketChannel.open();
if (!protect(tunnel.socket())){
throw new IllegalStateException("Can not protect tunnel");}
Log.i("TAG", "test");
tunnel.socket().setReuseAddress(true);
tunnel.socket().bind(new InetSocketAddress(localAddress, localPort));
Log.i("TAG", "bind test");
tunnel.connect(new InetSocketAddress(destAddress, destPort));
tunnel.configureBlocking(false);
packet.position(0);
packet.limit(length);
Log.i("TAG", "schreibe: " + tunnel.write(packet));
packet.clear();