1

我正在制作一个应用程序,它通过套接字将字符串发送到服务器,然后在服务器处理完该数据后读取输出。当它是我的前台任务时它工作得很好,但是我已经使用 AsyncTask 来显示一个进程对话框,而套接字通信在后台运行,并且在我从服务器读取输出然后尝试关闭套接字后事情开始中断。

private class Progressor extends AsyncTask<String, Void, Void> {
        ProgressDialog dialog;

        protected void onPreExecute() {
            dialog = ProgressDialog.show(ClearTalkInputActivity.this, "Loading..", "Analyzing Text", true, false);
        }

        protected Void doInBackground(String... strings) {
            String language = strings[0].toLowerCase();
            String the_text = strings[1];
            Socket socket = null; 
            DataOutputStream dos = null;
            DataInputStream dis = null;

            try {
                socket = new Socket(my_ip, port);
                dos = new DataOutputStream(socket.getOutputStream());
                dis = new DataInputStream(socket.getInputStream());
                dos.writeUTF(language+"****"+the_text);
                String in = "";
                while (in.indexOf("</content>") < 0) {
                    in += dis.readUTF();    
                }
                socket.close();

                save_str(OUTPUT_KEY, in);   


                } catch (UnknownHostException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
            } 
            finally {
                if (socket != null) {
                    try {
                        socket.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
            }

            if (dos != null) {
                try {
                    dos.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }

            if (dis != null) {
                try {
                    dis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            } 

            return null;
        }


    protected void onPostExecute() {
        if (dialog.isShowing())
            dialog.dismiss();
        startActivity(new Intent (output_intent));
    }
} 
4

1 回答 1

0

Android 中推荐的方法是使用包含的两个 HttpClient 之一:

Apache HTTP 客户端

HttpURL连接

无需直接使用套接字。这些客户为改善您的体验做了很多工作。

这是 Android 开发人员的一篇博客文章,解释了基础知识:http ://android-developers.blogspot.de/2011/09/androids-http-clients.html

于 2012-06-22T15:04:13.493 回答