HttpClient发送GET和POST请求所需的org.apache.http包

HttpClient发送GET和POST请求,传参需要用到StringEntity,NameValuePair,这两个类需要导入httpcore.jar。可以直接maven下载:
<dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpcore</artifactId>
    <version>4.4.9</version>
</dependency>

猜你喜欢

转载自blog.csdn.net/weixin_41913605/article/details/83927963