10

我正在尝试在两个 Android 设备之间创建 IPv6 TCP 连接。但是创建套接字总是失败。

如果我这样实例化它:

Inet6Address dest = (Inet6Address) InetAddress.getByName(addressString);
Socket socket = new Socket(dest, portNumber);

我得到以下异常:

java.net.ConnectException: failed to connect to *address* (port *portNumber*): connect failed: EINVAL (Invalid argument)

如果我像这样实例化我的 IPv6Address 对象:

Enumeration<NetworkInterface> networkInterfaces = NetworkInterface.getNetworkInterfaces();
NetworkInterface wifiInterface = null;
while (networkInterfaces.hasMoreElements()) {
  NetworkInterface networkInterface = networkInterfaces.nextElement();
  if (networkInterface.getDisplayName().equals("wlan0") || networkInterface.getDisplayName().equals("eth0")) {
    wifiInterface = networkInterface;
    break;
  }
}
Inet6Address dest = Inet6Address.getByAddress(null, addressBytes, wifiInterface );
Socket socket = new Socket(dest, portNumber);

调用 Socket 构造函数时出现此错误:

java.net.ConnectException: failed to connect to *address* (port *portNumber*): connect failed: EADDRNOTAVAIL (Cannot assign requested address)

这发生在带有 Jelly Bean 的 Galaxy Nexus 和带有 Gingerbread 的 Nexus One 上。

难道我做错了什么?创建这样的套接字的正确方法是什么?

另外:这篇文章建议使用构造函数

Inet6Address getByAddress (String host, byte[] addr, int scope_id)

在这种情况下,我必须使用什么作为 scope_id?

4

1 回答 1

5

由于您的 IP 地址是本地链接,因此可能必须使用范围 ID 或接口创建它,以便操作系统知道将其绑定到哪个接口。至于指定 scope_id,Android 文档似乎有些欠缺。此处的 Oracle 文档表明范围 ID 是系统特定的,无法以编程方式确定。

因此,我会尝试使用您明确指定要使用的 NetworkInterface 的备用工厂方法。有关详细信息,请参见此处。NetworkInterface 类中有一些方法可以发现系统上存在哪些接口。

于 2012-11-20T16:50:22.277 回答