//在 new StringEntity(params, "utf-8")指定为utf-8编码 try { HttpClient client = new DefaultHttpClient(); HttpPost httpPost = new HttpPost(url); //设置编码,防止中文传输乱码 StringEntity entity = new StringEntity(contentValue.toString(), "utf-8"); httpPost.setEntity(entity); HttpResponse response = client.execute(httpPost); //获取响应码 status = response.getStatusLine().getStatusCode(); //status = response.getStatusLine().getStatusCode(); Log.v("jsondata", "resp = " + response.getEntity().toString()); Log.v("jsondata", "status = " + status + "\n" + contentValue.toString()); }catch(Exception e){ Log.v("jsondata", "exception"); e.printStackTrace(); }
本文出自 “爬过山见过海” 博客,请务必保留此出处http://670176656.blog.51cto.com/4500575/1627804
原文地址:http://670176656.blog.51cto.com/4500575/1627804