Android:我用HttpClient发送post请求进行网络访问,然后对client对象没做任务关闭操作,但过一会出现异常
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励20(财富值+成长值)
展开全部
public static String loginByClientPost(String username,String password)
{
try {
//创建对象
HttpClient client = new DefaultHttpClient();
//输入地址
String path = "http://172.16.70.13:8080/AndroidService/LoginServlet";
HttpPost httpPost = new HttpPost(path); //包装地址
//指定要输入的数据实体
List<NameValuePair> list = new ArrayList<NameValuePair>();
list.add(new BasicNameValuePair("username", username));
list.add(new BasicNameValuePair("password", password));
httpPost.setEntity(new UrlEncodedFormEntity(list,"utf-8"));
//发送post请求
HttpResponse response = client.execute(httpPost);
int code = response.getStatusLine().getStatusCode();
while(code==200)
{
InputStream is = response.getEntity().getContent();
String text = StreamTools.getStream(is);
return text;
}
}catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
return null;
}
return null;
}
//你把这个试试看能运行不
{
try {
//创建对象
HttpClient client = new DefaultHttpClient();
//输入地址
String path = "http://172.16.70.13:8080/AndroidService/LoginServlet";
HttpPost httpPost = new HttpPost(path); //包装地址
//指定要输入的数据实体
List<NameValuePair> list = new ArrayList<NameValuePair>();
list.add(new BasicNameValuePair("username", username));
list.add(new BasicNameValuePair("password", password));
httpPost.setEntity(new UrlEncodedFormEntity(list,"utf-8"));
//发送post请求
HttpResponse response = client.execute(httpPost);
int code = response.getStatusLine().getStatusCode();
while(code==200)
{
InputStream is = response.getEntity().getContent();
String text = StreamTools.getStream(is);
return text;
}
}catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
return null;
}
return null;
}
//你把这个试试看能运行不
更多追问追答
追问
谢谢你的回答,但是我的代码是能运行的,只不过是成功运行完后,当这个窗口失去焦点的时候会出现那个橙色的err。我就想知道为什么会出现那个
追答
你那代码粘贴出来看看,看错误提示好像是连接关闭了又访问了才报错的。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2015-02-13
展开全部
楼主,因为线程没有真正结束,所以后面看到错误信息
追问
哦,为什么线程没有真正结束?我的网络访问已经成功取回信息,然后也成功调用回调了,能麻烦给分析下吗?
难道是我再这个线程中调用了主线程中变量的原因吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询