博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
http设置header
阅读量:5932 次
发布时间:2019-06-19

本文共 505 字,大约阅读时间需要 1 分钟。

1、httpPost 设置header,header内容是在发送请求的头文件里面

HttpPost httpPost = new HttpPost(url);如:Accept    text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8Accept-Encoding    gzip, deflateAccept-Language    zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3

2、StringEntity 设置header,header内容是在发送的内容里面

StringEntity stringEntity = new StringEntity(data, ToolString.encoding);如:

3、HttpResponse 设置header,header内容是在获取返回信息的头文件里面

HttpResponse response = httpClient.execute(httpPost);

转载于:https://blog.51cto.com/1197822/2157329

你可能感兴趣的文章
2015编程之美资格赛 回文子序列个数
查看>>
Codeforces 985 E - Pencils and Boxes
查看>>
雷人语句
查看>>
Google Dremel 原理 - 如何能3秒分析1PB
查看>>
JS 循环给li绑定参数不同的点击事
查看>>
新闻网站个人中心(头像修改)流程分析
查看>>
OpenGL渲染流程
查看>>
PhoneGap介绍
查看>>
Js弹出框代码,头像选择工具
查看>>
NCBI
查看>>
atoi 实现
查看>>
Android 权限大全 分类: Android ...
查看>>
Java安全通信:HTTPS与SSL
查看>>
linux下如何安装rzsz
查看>>
POJ 1703 Find them, Catch them
查看>>
分布式id生成
查看>>
微信js jdk 的配置
查看>>
Spring的面向切面
查看>>
[HDU] 3037 Saving Beans
查看>>
Linux 中 bashrc 中的 rc 是什么意思
查看>>