java爬虫Gecco爬取豆瓣top250的电影数据


这几天,一个作业需要用到java爬虫,于是在这里记录一下

导入依赖

        <dependency>
            <groupId>com.geccocrawler</groupId>
            <artifactId>gecco</artifactId>
            <version>1.0.8</version>
        </dependency>

获取所有url

top250的url是那些链接
在这里插入图片描述

在这里插入图片描述
我们可以写一个类来保存那些的url,如下parentName是保存选择器 “p” 文字信息,可要可不要;categorys是保存选择器 “a” 的url的;它的类型List <HrefBean,HrefBean如下图,它可以保存 a 标签的 href 和其包含的文字
在这里插入图片描述
Category类

package com.hzxy.reptile.crawl;

import com.geccocrawler.gecco.annotation.HtmlField;
import com.geccocrawler.gecco.annotation.Text;
import com.geccocrawler.gecco.spider.HrefBean;
import com.geccocrawler.gecco.spider.HtmlBean;

import java.util.List;

/**
 * 创建时间 2021/7/1 16:10
 * 爬取数据的封装类
 * @author Ye
 * @version 1.0
 */
public class Category implements HtmlBean {
   
    private static final long serialVersionUID = 3018760488621382659L;

    @Text
    @HtmlField(cssPath="p")
    private String parentName;

    //保存url
    @HtmlField(cssPath="a")
    private List<HrefBean> categorys;

    public String getParentName() {
   
        return parentName;
    }

    public void setParentName(String parentName) {
   
        this.parentName = parentName;
    }

    public List<HrefBean> getCategorys() {
   
        return categorys;
    }

    public void setCategorys(List<HrefBean> categorys) {
   
        this.categorys = categorys;
    }

    @Override
    public String toString() {
   
        return "Category{" +
                "parentName='" + parentName + '\'' +
                ", categorys=" + categorys +
                '}';
    }
}

这是获取所有url的类,匹配url https://movie.douban.com/top250,找到所有.info选择器的元素,把a的url赋值给Category的categorys,文字赋值给parentName
在这里插入图片描述

AllSort类

package com.hzxy.reptile.crawl;

import com.geccocrawler.gecco.annotation.Gecco;
import com.geccocrawler.gecco
  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 5
    评论
Gecco是什么 Gecco是一款用java语言开发的轻量化的易用的网络爬虫Gecco整合了jsoup、httpclient、fastjson、spring、htmlunit、redission等优秀框架,让您只需要配置一些jquery风格的选择器就能很快的写出一个爬虫Gecco框架有优秀的可扩展性,框架基于开闭原则进行设计,对修改关闭、对扩展开放。同时Gecco基于十分开放的MIT开源协议,无论你是使用者还是希望共同完善Gecco的开发者,欢迎pull request。如果你喜欢这款爬虫框架请star 或者 fork!参考手册架构图: 主要特征  简单易用,使用jquery风格的选择器抽取元素  支持页面中的异步ajax请求  支持页面中的javascript变量抽取  利用Redis实现分布式抓取,参考gecco-redis  支持结合Spring开发业务逻辑,参考gecco-spring  支持htmlunit扩展,参考gecco-htmlunit  支持插件扩展机制  支持下载时UserAgent随机选取  支持下载代理服务器随机选取 使用手册:http://www.geccocrawler.com/tag/sysc/快速入门:@Gecco(matchUrl="https://github.com/{user}/{project}", pipelines="consolePipeline") public class MyGithub implements HtmlBean {     private static final long serialVersionUID = -7127412585200687225L;     @RequestParameter("user")     private String user;     @RequestParameter("project")     private String project;     @Text     @HtmlField(cssPath=".repository-meta-content")     private String title;     @Text     @HtmlField(cssPath=".pagehead-actions li:nth-child(2) .social-count")     private int star;     @Text     @HtmlField(cssPath=".pagehead-actions li:nth-child(3) .social-count")     private int fork;     @Html     @HtmlField(cssPath=".entry-content")     private String readme;     public String getReadme() {         return readme;     }     public void setReadme(String readme) {         this.readme = readme;     }     public String getUser() {         return user;     }     public void setUser(String user) {         this.user = user;     }     public String getProject() {         return project;     }     public void setProject(String project) {         this.project = project;     }     public String getTitle() {         return title;     }     public void setTitle(String title) {         this.title = title;     }     public int getStar() {         return star;     }     public void setStar(int star) {         this.star = star;     }     public int getFork() {         return fork;     }     public void setFork(int fork) {         this.fork = fork;     }     public static void main(String[] args) {         GeccoEngine.create()         .classpath("com.geccocrawler.gecco.demo")         .start("https://github.com/xtuhcy/gecco")         .thread(1)         .interval(2000)         .loop(true)         .mobile(false)         .start();     } }demo地址:教您使用java爬虫gecco抓取JD全部商品信息(一)教您使用java爬虫gecco抓取JD全部商品信息(二)教您使用java爬虫gecco抓取JD全部商品信息(三)集成Htmlunit下载页面爬虫的监控一个完整的例子,分页处理,结合spring,mysql入库 标签:网络爬虫  开源爬虫

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值