DatagramChannel.receive()导致IndexOutOfBoundsException

时间:2014-02-27 09:03:47

标签: java android indexoutofboundsexception datagram

akk的第一个,我知道问题here几乎相同,但没有答案。所以我再问一次。

在我的Android应用程序中,我使用非阻塞UDP套接字来执行某些广播作业,因此我选择DatagramChannel。当我在Samsung GT-P7510(使用Android 4.0.4)上运行以下代码时,我得到一个IndexOutOfBoundsException,表示缓冲区不够长。但显然我已经分配了足够大的空间。有谁知道原因?任何帮助表示赞赏。

代码导致异常

ByteBuffer bytebuf = ByteBuffer.allocateDirect(1024);
bytebuf.clear();

try {
    // LINE causes the Exception!
    SocketAddress addr = socketDiscoverChannel.receive(bytebuf);
    if (addr != null) {
        bytebuf.flip();

        InetSocketAddress remoteAddr = (InetSocketAddress) addr;
        String remoteIP = remoteAddr.getAddress().getHostAddress();
        ......
        ......
} finally {
        ......
}

日志:

02-26 16:58:22.209: E/AndroidRuntime(4695): FATAL EXCEPTION: IntentService[DaemonListeningService]
02-26 16:58:22.209: E/AndroidRuntime(4695): java.lang.IndexOutOfBoundsException: length=36, offset=0, buffer size=0
02-26 16:58:22.209: E/AndroidRuntime(4695):     at java.net.DatagramPacket.setLengthOnly(DatagramPacket.java:234)
02-26 16:58:22.209: E/AndroidRuntime(4695):     at java.net.DatagramPacket.setLength(DatagramPacket.java:222)
02-26 16:58:22.209: E/AndroidRuntime(4695):     at libcore.io.IoBridge.postRecvfrom(IoBridge.java:528)
02-26 16:58:22.209: E/AndroidRuntime(4695):     at libcore.io.IoBridge.recvfrom(IoBridge.java:516)
02-26 16:58:22.209: E/AndroidRuntime(4695):     at java.nio.DatagramChannelImpl.receiveDirectImpl(DatagramChannelImpl. java:232)
02-26 16:58:22.209: E/AndroidRuntime(4695):     at java.nio.DatagramChannelImpl.receive(DatagramChannelImpl.java:185)
02-26 16:58:22.209: E/AndroidRuntime(4695):     at com.zisync.daemon.DaemonListeningService.startListening(    DaemonListeningService.java:261)
02-26 16:58:22.209: E/AndroidRuntime(4695):     at com.zisync.daemon.DaemonListeningService.onHandleIntent(    DaemonListeningService.java:98)
02-26 16:58:22.209: E/AndroidRuntime(4695):     at android.app.IntentService$ServiceHandler.handleMessage(IntentService.   java:65)
02-26 16:58:22.209: E/AndroidRuntime(4695):     at android.os.Handler.dispatchMessage(Handler.java:99)
02-26 16:58:22.209: E/AndroidRuntime(4695):     at android.os.Looper.loop(Looper.java:137)
02-26 16:58:22.209: E/AndroidRuntime(4695):     at android.os.HandlerThread.run(HandlerThread.java:60)

1 个答案:

答案 0 :(得分:3)

这是一个非常令人失望的问题。经过几次尝试,我似乎知道原因 这是Android某些特定版本的错误。
事实上,我不确定,但我获得了一些支持here

我在另一台Android设备上运行完全相同的代码(Samsung GT-I9220与Android 4.1.4),它运行正常。

在我将ByteBuffer.allocateDirect(1024)更改为ByteBuffer.allocate(1024)(没有直接)之后,它会在导致异常的先前设备上运行。我真的不知道原因,但情况就是这样。

如果有人知道原因或确认这是否真的是Android(某些版本)的错误,我会暂时停止这个问题。