首页 > 代码库 > httpclient就是个能发送http连接的工具包,包括能发送post请求和get请求
httpclient就是个能发送http连接的工具包,包括能发送post请求和get请求
1.httpclient就是个能发送http连接的工具包,包括能发送post请求和get请求。
http 连接一次就有返回流。http是个双向的嘛。只有连接了,就会有输出返回流。
所以在执行http连接的时候,返回值都是http连接的返回流。
HttpResponse response = client.execute(httpPost);
2.http发送,body里是可以写入中文的。但要注意乱码问题:
- public static String getHttpRequestString(String url,String body) throws IOException {
- HttpClient client = new DefaultHttpClient();
- HttpPost httpPost = new HttpPost(url);
- StringEntity stringEntity = new StringEntity(body);
- httpPost.setEntity(stringEntity);
- httpPost.setHeader("Content-Type", "application/json; charset=UTF-8");
- HttpResponse response = client.execute(httpPost);
- BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
- String line;
- StringBuffer jsonString = new StringBuffer();
- while((line = bufferedReader.readLine()) != null) {
- jsonString.append(line);
- }
- return jsonString.toString();
- }
这是最初的代码,如果传输的body有中文汉字的话,如果对方设置的格式是UTF-8,那么他接收到的字符是乱码,
stringEntity.setContentEncoding("UTF-8");
加上这样一句代码,设置下格式就好了。
httpclient就是个能发送http连接的工具包,包括能发送post请求和get请求
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。