android里面有提供了工具apache包,需要注意的是编码格式必须一致才能正确的到数据
public static MsgModel doPost(String url, Map data)throws ClientProtocolException, IOException {System.out.println("*****doPost******");HttpPost post = new HttpPost(url);System.out.println("**url*"+url);post.setEntity(new UrlEncodedFormEntity(getParames(data), HTTP.UTF_8));// 设置post参数HttpResponse response = httpClient.execute(post);String msg = getHttpResult2(response);System.out.println("response:"+msg);MsgModel msgModel = new MsgModel();msgModel.setCodeNo(response.getStatusLine().getStatusCode());msgModel.setLongMessage(response.getStatusLine().toString());msgModel.setMsg(msg);return msgModel;}

BufferedReader br = new BufferedReader(new InputStreamReader(request.getInputStream(),"UTF-8"));String line = null;StringBuilder sb = new StringBuilder();while((line = br.readLine())!=null){sb.append(line);}System.out.println(URLDecoder.decode(sb.toString(),"utf-8"));

更多相关文章

  1. Android(安卓)技巧 - listview 里面的图片不能响应onClick事件?
  2. Android(安卓)里面的android_secret_code
  3. 错误 'roundIcon' in package 'android'
  4. 在设置里面增加关闭和打开GPS ,数据流量的接口
  5. Android中两种设置全屏的方法
  6. Android(安卓)declare-styleable:自定义控件的属性(attr.xml,Type
  7. Android(安卓)studio使用心得(九)------如何设置项目编码
  8. adt20新建项目Android(安卓)Support library not installed问题
  9. Android(安卓)模糊搜索rawquery bind or column index out of ra

随机推荐

  1. Android(安卓)多媒体 -- 四种播放视频的
  2. Android 缓存的工具类
  3. Android(安卓)gradle编译指令(implementat
  4. Android Export aborted because fatal e
  5. android 开发报错处理
  6. android 8.1launcher去掉抽屉,显示allapp
  7. Android的VideoView如何循环播放
  8. android的samples
  9. android Sqlite数据库事务处理*.sql 语句
  10. android的WebView简单实例