AsyncTask中的ServerSocket.accept()

时间:2014-07-10 09:42:14

标签: android android-asynctask serversocket

我正在阅读有关AsyncTask的内容,我尝试使用Socket进行下面的简单程序。但是如果使用accept方法,则SendTask()。execute()将不起作用。我怎样才能使它工作?

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    new ServerTask().execute();
    Button btn = (Button)findViewById(R.id.btn);
    btn.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            new SendTask().execute();
            System.out.println("1234");
        }
    });
}

class ServerTask extends AsyncTask<Void, Void, Void>{

    @Override
    protected Void doInBackground(Void... params) {
        try {
            ServerSocket serverSocket = new ServerSocket(7000);
            serverSocket.accept();
            System.out.println("data accpet");
            serverSocket.close();
        } catch (IOException e) {
            e.printStackTrace();
        }

        return null;
    }

}

class SendTask extends AsyncTask<Void, Void, Void>{

    @Override
    protected Void doInBackground(Void... params) {
        System.out.println("Send!!!!!!!!!");
        return null;
    }

}

这是我的main.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="${relativePackage}.${activityClass}" >

    <Button android:id="@+id/btn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

</RelativeLayout>

如果使用accept方法,则输出:

07-10 09:29:33.940: I/System.out(19660): 1234

如果不使用accept方法,则输出:

07-10 09:31:00.070: I/System.out(20174): 1234

07-10 09:31:00.070: I/System.out(20174): Send!!!!!!!!!

2 个答案:

答案 0 :(得分:0)

根据您的系统,异步任务不会并行运行,而是按顺序运行。这就是为什么你没有看到第二个asynctask的日志,因为第一个接受从未在没有客户端连接时完成。不错的尝试。改为使用线程。

答案 1 :(得分:0)

如果您希望在输出中看到"data accpet",则必须从端口7000上的其他设备获取传入连接。System.out.println("data accpet");将在serverSocket.accept();返回之前运行,并且在建立连接之前,serverSocket.accept();将不会返回。

此行为的Java Documentation说明:

  

侦听与此套接字的连接并接受它。该方法将阻塞,直到建立连接。