20200726_java爬虫_使用HttpClient模拟浏览器发送请求

Posted aifu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了20200726_java爬虫_使用HttpClient模拟浏览器发送请求相关的知识,希望对你有一定的参考价值。

0. 摘要

0.1 添加依赖

<dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpclient</artifactId>
    <version>4.5.2</version>
</dependency>

 

0.2 代码

//1. 打开浏览器  创建httpclient对象
CloseableHttpClient httpClient = HttpClients.createDefault();
//2. 输入网址
HttpGet httpGet = new HttpGet("http://www.baidu.com");
//3. 发送请求
CloseableHttpResponse httpResponse = httpClient.execute(httpGet);
//4. 响应结果
HttpEntity httpEntity = httpResponse.getEntity();
//5. 解析结果
String result = EntityUtils.toString(httpEntity, "utf-8");
System.out.println(result);

 

1. 实操

1.1 添加依赖

1.1.1 找到 pom.xml 添加依赖

技术图片

 

 1.1.2 依赖代码

<dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpclient</artifactId>
    <version>4.5.2</version>
</dependency>

 

1.2 添加 TestHttpClient 类

1.2.1 创建类文件 com.aifu.TestHttpClient

技术图片

 

 

1.2.2 添加代码

技术图片

 

 

public static void main(String[] args) throws IOException {
    //1. 打开浏览器  创建httpclient对象
    CloseableHttpClient httpClient = HttpClients.createDefault();
    //2. 输入网址
    HttpGet httpGet = new HttpGet("http://www.baidu.com");
    //3. 发送请求
    CloseableHttpResponse httpResponse = httpClient.execute(httpGet);
    //4. 响应结果
    HttpEntity httpEntity = httpResponse.getEntity();
    //5. 解析结果
    String result = EntityUtils.toString(httpEntity, "utf-8");
    System.out.println(result);
}

1.3 运行

1.3.1 点击绿标运行 或者快捷键 ctrl + alt +F10

技术图片

 

以上是关于20200726_java爬虫_使用HttpClient模拟浏览器发送请求的主要内容,如果未能解决你的问题,请参考以下文章

java图片爬虫脚本_代码下载

协助将数据框拆分为新列

Java_爬虫,如何抓取Js动态生成数据的页面?

20200726记录:部署Tomcat服务器,使用Tomcat部署虚拟主机,使用Varnish加速Web

App爬虫----adb的使用

爬虫_83款 网络爬虫开源软件