HttpClient是一个实现了http协议的开源Java客户端工具库,可以通过程序发送http请求,现在HttpClient已经更名为HttpComponents, HttpClient 4.0 几乎重新设计,并重写了 HttpClient 3.x的全部代码。在HttpClient 4.0 中修正一些 HttpClient 1.0中遗留的问题,这些遗留问题在不改变现在核心AP代码是无法解决的,因此HttpClient 开发团队本次彻底改动底层代码。
HttpClient 4.0 架构方法发生的变化:
- 重新设计了HttpClient 4.0 API架构,彻底从内部解决了所有 HttpClient 3.x 已知的架构缺陷代码。
- HttpClient 4.0 提供了更简洁,更灵活,更明确的API。
- HttpClient 4.0 引入了很多模块化的结构。
- HttpClient 4.0性能方面得到了不小的提升,包括更少的内存使用,通过使用HttpCore模块更高效完成HTTP传输。
- 通过使用 协议拦截器(protocol interceptors), HttpClient 4.0实现了 交叉HTTP(cross-cutting HTTP protocol) 协议
- HttpClient 4.0增强了对连接的管理,更好的处理持久化连接,同时HttpClient 4.0还支持连接状态
- HttpClient 4.0增加了插件式(可插拔的)的 重定向(redirect) 和 验证(authentication)处理。
- HttpClient 4.0支持通过代理发送请求,或者通过一组代理发送请求。
- 更灵活的SSL context 自定义功能在HttpClient 4.0中得以实现。
- HttpClient 4.0减少了在省城HTTP请求 和 解析HTTP响应 过程中的垃圾信息。
- HttpClient团队鼓励所有的项目升级成 HttpClient 4.0
更详细的关于 HttpClient 信息请访问下面网址:
http://www.apache.org/dist/httpcomponents/httpclient/RELEASE_NOTES.txt
HttpClient 4.0 API 指南可以通过下面网址访问:
http://hc.apache.org/httpcomponents-client/tutorial/html/
您可以再下面网址找到HttpClient 4.0 的一些样例代码:
http://hc.apache.org/httpcomponents-client/examples.html
分享到:
相关推荐
httpclient-xApache HttpComponents Client framework extensionReference:[1] HttpClient Overview - Change log:2014.11.06[NEW] KeepAliveHttpClients - 增加基于连接管理器和"Keep-Alive"来创建HttpClients的...
- `overview-tree.html`:类层次结构的视图。 - `constant-values.html`:常量值的详细列表。 - `deprecated-list.html`:已弃用的API列表。 - `allclasses-frame.html`:所有类的框架视图。 - `allclasses-...
此外,它还提供了对HttpClient性能的增强,使得网络通信更加高效。而.NET Core 2.2则在.NET Core 2.1的基础上继续增强,提供了更多针对Web API开发的改进以及微服务架构和Azure服务的集成。 微软还通过Azure ...
ExcelUtils代表着一类的报表生成工具,他使用报表本身作为模板。对于它,只能处理Excel文件,它以Excel文件为模板,在其上加以自己的定义语言,简单通俗...官方主页:http://excelutils.sourceforge.net/Overview.html
jdk.incubator.httpclient Defines the high-level HTTP and WebSocket API. jdk.jartool Defines tools for manipulating Java Archive (JAR) files, including the jar and jarsigner tools. jdk.javadoc ...
$httpClient = $client->authorize(); // make an HTTP request $response = $httpClient->get('https://www.googleapis.com/plus/v1/people/me'); ``` ### Caching ### It is recommended to use another ...
This book will define microservices architecture and provide an overview of costs and benefits. As with the Architect’s Handbook, I’ll go on to address architecture, design, and implementation ...
3. Apache相关技术:如使用Apache HttpClient进行网络请求,或使用Apache Ant或Maven进行项目构建。 四、工作经验(Work Experience) 按时间倒序列出你的工作经历,包括公司名称、职位、工作日期以及你在该职位上...
private String overview; // 其他属性... } // 发送请求并解析响应 Gson gson = new Gson(); Response response = sendGetRequest(url); // 实现发送GET请求的方法 Movie movie = gson.fromJson(response....