2

我正在为我的一门课做作业。

我应该编写一个网络爬虫,从给定指定爬网深度的网站下载文件和图像。

我被允许使用第三方解析 api,所以我使用Jsoup。我也试过htmlparser。两个不错的软件,但它们并不完美。

我在处理 url 之前使用了默认的 java URLConnection来检查内容类型,但是随着链接数量的增加,它变得非常慢。

问题:任何人都知道任何专门用于图像和链接的解析器 API 吗?

我可以开始使用 Jsoup 编写我的,但我很懒。此外,如果有可行的解决方案,为什么还要重新发明轮子?任何帮助,将不胜感激。

我需要在循环遍历链接时检查 contentType 以检查链接是否指向文件,以一种有效的方式,但 Jsoup 没有我需要的内容。这是我所拥有的:**

    HttpConnection mimeConn =null;
    Response mimeResponse = null;
    for(Element link: links){

        String linkurl =link.absUrl("href");
        if(!linkurl.contains("#")){

            if(DownloadRepository.curlExists(link.absUrl("href"))){
                continue;
            }

            mimeConn = (HttpConnection) Jsoup.connect(linkurl);
            mimeConn.ignoreContentType(true);
            mimeConn.ignoreHttpErrors(true);
            mimeResponse =(Response) mimeConn.execute();

            WebUrl webUrl = new WebUrl(linkurl,currentDepth+1);
            String contentType = mimeResponse.contentType();

            if(contentType.contains("html")){
                page.addToCrawledPages(new WebPage(webUrl));
            }else if(contentType.contains("image")){                    
                page.addToImages(new WebImage(webUrl));
            }else{
                page.addToFiles(new WebFile(webUrl));
            }

            DownloadRepository.addCrawledURL(linkurl);

        }**

更新 根据 Yoshi 的回答,我能够让我的代码正常工作。这是链接:

https://github.com/unekwu/cs_nemesis/blob/master/crawler/crawler/src/cu/cs/cpsc215/project1/parser/Parser.java

4

1 回答 1

5

使用jSoup我认为这个 API 足以满足您的目的。你也可以在这个网站上找到好的食谱。

几个步骤:

  1. Jsoup:如何获取图片的绝对网址?
  2. 如何从java中的任何网页下载图像
  3. 您可以编写自己的递归方法,遍历包含必要域名或相关链接的页面上的链接。使用这种方式抓取所有链接并找到其上的所有图像。自己写,这不是坏习惯。

你不需要使用 URLConnection 类,jSoup 有它的包装器。

例如

您可以只使用一行代码来获取 DOM 对象:

Document doc = Jsoup.connect("http://en.wikipedia.org/").get();

而不是这段代码:

    URL oracle = new URL("http://www.oracle.com/");
    URLConnection yc = oracle.openConnection();
    BufferedReader in = new BufferedReader(new InputStreamReader(
                                yc.getInputStream()));
    String inputLine;
    while ((inputLine = in.readLine()) != null) 
        System.out.println(inputLine);
    in.close();

Update1 尝试在您的代码中添加下一行:

Connection.Response res = Jsoup.connect("http://en.wikipedia.org/").execute();
String pageContentType = res.contentType();
于 2013-02-15T12:45:13.653 回答