zoukankan      html  css  js  c++  java
  • Java. How to use headless browsers for crawling web and scraping data from website.--转

    https://www.linkedin.com/pulse/java-how-use-headless-browsers-crawling-web-scraping-data-taluyev/

    Did you ever think to implement software to scrape data from web pages? I guess everyone could think about crawling web.

    The simplest way to get data from remote page is run your preferable web browser, load target web page, select needed text, copy and past text into text editor for the following data transformations. Joke :)

    To be honest how to automate this routine process?  Let's determine primary tasks need to be solved for implementing our crawler.

    1. Load data from remote host. It is not a secret how to to this...
    2. Parse loaded html and build DOM (Document Object Model).
    3. Get data by traversing DOM or using CSS selectors. 
    4. Save or pass data for other tasks.

    Parsing static HTML is quite "easy task". There are Java libraries which do this task very well. I would recommend to take a look at http://jsoup.org It's enough in simple case. 

    How to be with hidden HTML which is created by Javascript? We need to use browser or implement browser :) Fortunately we do not have to implement  our own browser if we want just to implement crawler. These browsers are already implemented. Our herous: http://phantomjs.orghttps://slimerjs.org

    How to organize communication between Java program and headless browser? On the stage appears "Ghost" driver. The both browsers support this driver out of the box. Ghost driver is "relative" of WebDriverWebDriver is well known among test-engineers - a lot  of code examples and manuals. We are free to use Maven for integration GHost driver into crawler application. 

    There are difference between http://phantomjs.orghttps://slimerjs.org. It is well documented on FAQ page of Slimerjs project.

    Makes sense to consider Javascript framework casperjs.org - is a navigation scripting & testing utility for PhantomJS and SlimerJS written in Javascript.

    What if we do not want to use not PhantomJS nor SlimerJS? There are alternatives:

    At this point I propose to make a pause. Now we have enough information to dive into implementing of web crawlers applications.

    Analytics starts from data gulps :)

    Please like and share if you find my arcticle usefull :-)

  • 相关阅读:
    toggleClass
    CSS实现文字旋转/实现角标
    vs直接IP访问运行项目
    移除页面蓝色层
    JS防止页面被其他网站iframe使用方法
    JS执行保存在数据库中的JS代码
    JavaScript中函数是不能重载原因
    jquery 根据文内内容获取dom
    IIS无法加载字体文件(*.woff,*.svg)的解决办法
    MySQL 的 RowNum 实现
  • 原文地址:https://www.cnblogs.com/davidwang456/p/8696512.html
Copyright © 2011-2022 走看看