zoukankan      html  css  js  c++  java
  • htmlunit爬取js异步加载后的页面

    直接上代码:

    一、 index.html 
    调用后台请求获取content中的内容。

    <html>
    <head>
        <script type="text/javascript" src="./jquery.min.js"></script>
    </head>
    <body>
    <h2>Hello World!</h2>
    <div id="content"></div>
    <script type="text/javascript">
    $(document).ready(function(){
          $.post("/evh/test/testList",{},function(data){
              $("#content").text(JSON.stringify(data));
          }); 
    });
    </script>
    </body>
    </html>
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    二、TestController.java 
    /test/testList接口从后台数据库获取数据。

    package com.everhomes.proxy.controller;
    
    import javax.annotation.Resource;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    import org.springframework.web.bind.annotation.ExceptionHandler;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    import com.everhomes.proxy.mapper.TestMapper;
    
    @RestController
    @RequestMapping("/test")
    public class TestController {
        private static final Logger logger = LoggerFactory.getLogger(TestController.class);
    
        @Resource
        private TestMapper testMapper;
    
        @RequestMapping("testList")
        public Object testList(){
            return testMapper.testList();
        };
    
        @ExceptionHandler(Exception.class)
        public Object exception(Exception e){
            logger.error("error: ", e);
            return "error: " + e.toString();
        }
    }
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31

    三、Crawler.java

    package com.everhomes.generate;
    
    import java.io.IOException;
    
    import com.gargoylesoftware.htmlunit.NicelyResynchronizingAjaxController;
    import com.gargoylesoftware.htmlunit.WebClient;
    import com.gargoylesoftware.htmlunit.html.HtmlPage;
    
    public class Crawler {
        public static void main(String[] args) throws IOException, InterruptedException {
            WebClient webClient = new WebClient(BrowserVersion.CHROME);  
                webClient.getOptions().setJavaScriptEnabled(true);
                webClient.getOptions().setCssEnabled(false);
                webClient.getOptions().setRedirectEnabled(true);
                webClient.getOptions().setThrowExceptionOnScriptError(false);
                webClient.getOptions().setTimeout(50000);
                HtmlPage rootPage = webClient.getPage("http://localhost:8080/evh/index.html");  
                webClient.waitForBackgroundJavaScript(10000);
    
                FileUtils.createFile(DIRECTORY+"cc.html", rootPage.asXml());
                webClient.close();
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24

    四、pom.xml 
    添加相关依赖。

    
        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.6</version>
        </dependency>
        <dependency> 
                <groupId>net.sourceforge.htmlunit</groupId> 
                <artifactId>htmlunit-core-js</artifactId> 
                <version>2.23</version> 
        </dependency> 
        <dependency> 
                <groupId>net.sourceforge.htmlunit</groupId> 
                <artifactId>htmlunit</artifactId> 
                <version>2.25</version> 
        </dependency> 
  • 相关阅读:
    java移位的具体应用
    mysql计划任务(轮询执行脚本)
    算法题(1)
    transient关键字及Serializable的序列化与反序列化
    java后台调用短信接口,实现发送短信验证码的控制层实现
    防卫导弹
    C++ STL
    字母转换
    三分·三分求极值
    各种数据类型取值范围
  • 原文地址:https://www.cnblogs.com/telwanggs/p/6878599.html
Copyright © 2011-2022 走看看