1. 程式人生 > >HttpClient是什麽

HttpClient是什麽

高效 是什麽 重要 超文本 應用 應用程序 傳輸 訪問 depend

3.2.1知識概述
HttpClient 是 Apache Jakarta Common 下的子項目,可以用來提供高效的、最新的、功能豐富的支持 HTTP 協議的客戶端編程工具包,並且它支持 HTTP 協議最新的版本和建議。
HtppClient 官網
為什麽有HttpClient?
l 超文本傳輸協議(HTTP)可能是當今互聯網上使用的最重要的協議
l 雖然java.net包提供了通過HTTP訪問資源的基本功能,但它並沒有提供許多應用程序所需的完全靈活性或功能
使用HttpClient的maven依賴

<dependencies>
    <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpclient</artifactId>
        <version>4.5.3</version>
    </dependency>
    <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>fluent-hc</artifactId>
        <version>4.5.3</version>
    </dependency>
</dependencies>

HttpClient是什麽