简单的爬虫实现

Posted 李飞21

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单的爬虫实现相关的知识,希望对你有一定的参考价值。


//1、创建一个测试类,取名为TestHttpClient public class TestHttpClient{ //2、创建获取数据的方法get public void get() { //3、创建http对象 CloseableHttpClient httpClient = HttpClients.createDefault(); //4、模拟get请求(这里地址取的是新浪上的一篇博文) String url = "http://blog.sina.com.cn/s/blog_149f87a9e0102x3i8.html"; HttpGet get = new HttpGet(url); //5、创建一个返回对象 CloseableHttpResponse response = HttpClient.execute(get); //6、通过工具类转换成一个字符串,字符串就是网页的内容 String html = EntityUtils.toString(response.getEntity()
,“utf-8”
); //7、将获取的内容打印出来 system.out.print(html); } }

  Entity代表网页的实体内容

以上是关于简单的爬虫实现的主要内容,如果未能解决你的问题,请参考以下文章

代码片段 - Golang 实现简单的 Web 服务器

5行python代码实现简单的网络爬虫

SOCKET简单爬虫实现代码和使用方法

如何通过nodeJs爬虫获取数据简单实现代码

pyrthon 简单爬虫实现

用urllib库几行代码实现最简单爬虫