SocketChannel还没有准备好

时间:2010-11-02 19:56:35

标签: java android sockets nio

我再次遇到Android中的套接字编程问题。我的问题是Selector.select()返回零,表示没有SocketChannels可以写入。同样的代码在普通的Java中工作,但在Android中不起作用。这是我的代码:

package com.test;

import java.io.IOException;
import java.net.InetSocketAddress;
import java.net.SocketAddress;
import java.nio.channels.ClosedChannelException;
import java.nio.channels.Selector;
import java.nio.channels.SocketChannel;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;

public class WebSocketTest extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

  SocketChannel channel = null;

        SocketAddress socketAdress = new InetSocketAddress("10.0.0.1", 8787);

  try {
   channel = SocketChannel.open();
  } catch (IOException e) {
   Log.e("ERROR", "channel open");
  }

  try {
   channel.configureBlocking(false);
  } catch (IOException e1) {
   Log.e("ERROR", "channel blocking");
  }

  try {
   channel.connect(socketAdress);
  } catch (IOException e) {
   Log.e("ERROR", "channel connect");
  }

  try {
   while(!channel.finishConnect())
   {

   }
  } catch (IOException e1) {
   Log.e("ERROR", "channel finishConnect");
  }


  Selector selector = null;
  try {
   selector = Selector.open();
  } catch (IOException e) {
   Log.e("ERROR", "selector open");
  }
  try {
   channel.register(selector, channel.validOps());
  } catch (ClosedChannelException e) {
   Log.e("ERROR", "channel register");
  }

  boolean i = true;

  while(i)
  {
   int readyChannels = 0;
   try {
    readyChannels = selector.select();
   } catch (IOException e) {
    Log.e("ERROR", "selector select");
   }

   if(readyChannels > 0)
   {
    i = false;
   }
  }
    }
}

在Java readyChannels = 1.在Android中,它为0。 任何人都可以帮助我吗?

2 个答案:

答案 0 :(得分:2)

模拟器位于虚拟路由器后面。您需要配置Network Redirections(端口转发)以使仿真器上的某个端口对外部网络(包括您的计算机)可见。

答案 1 :(得分:0)

此NIO代码存在多个问题。

  1. 您可以在进入非阻塞模式之前连接,而不是连接然后在finishConnect()周围旋转。目前你正在刻录CPU,压扁电池等等。

  2. 只有在要写东西时才应注册OP_WRITE。它通常是“准备好”的,所以如果你为它永久注册通道,你的选择循环就会旋转。 OP_WRITE未准备好的唯一时间是填充套接字发送缓冲区。