前言:commons-httpclient 與 org.apache.httpcomponents 區(qū)別
(一)新舊區(qū)別
commons-httpclient 是 apache-commons 項(xiàng)目下的一個(gè)子項(xiàng)目,現(xiàn)在已經(jīng)被 org.apache.httpcomponents 取代,org.apache.httpcomponents 提供了更好的性能和更大的靈活性。
我們這里就是寫舊的commons-httpclient,后面會(huì)寫專門的文集用于介紹org.apache.httpcomponents。
(二)下載地址
commons-httpclient的下載地址如下,其最新版本為3.1,且已經(jīng)不再更新。
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
</dependency>
HttpComponents的下載地址如下:
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.3</version>
</dependency>