我是靠谱客的博主 年轻白昼,最近开发中收集的这篇文章主要介绍httpcliet、commons-httpclient、defaulthttpclient的区别和联系 The type DefaultHttpClient is deprecated,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
org.apache.httpcomponents » httpclient
原来,commons-httpclient 是 apache-commons 项目下的一个子项目,后来被 HttpComponents 取代,
后者提供了更好的性能和更大的灵活性。
原文地址如下:http://hc.apache.org/httpclient-3.x/
PS:
commons-httpclient的GAV地址为
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
</dependency>
其最新版本为3.1,且已经不再更新;
HttpComponents的GAV地址为
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.1</version>
</dependency>
截止目前(2016-01-05),最新版本为4.5.1;
The type DefaultHttpClient is deprecated
HttpClient client = new DefaultHttpClient();
改为:
HttpClient client = HttpClientBuilder.create().build();
最后
以上就是年轻白昼为你收集整理的httpcliet、commons-httpclient、defaulthttpclient的区别和联系 The type DefaultHttpClient is deprecated的全部内容,希望文章能够帮你解决httpcliet、commons-httpclient、defaulthttpclient的区别和联系 The type DefaultHttpClient is deprecated所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复