我正在创建一个应用程序,通过套接字将字符串发送到服务器,然后在服务器处理完该数据后读取输出。当它是我的前台任务时,它工作得很好,但是我已经使用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));
}
}
答案 0 :(得分:0)
Android中推荐的方法是使用两个包含的HttpClients之一:
无需直接使用套接字。这些客户为改善您的体验做了很多工作。
以下是Android开发人员撰写的一篇博客文章,其中介绍了基础知识:http://android-developers.blogspot.de/2011/09/androids-http-clients.html