我们可以在此代码中提供批量网址吗?

时间:2015-12-11 09:25:41

标签: javascript java html web-scraping urlconnection

网址url =新URI(" http://tamilblog.ishafoundation.org/")。toURL();

我想在此连接器中提供100个网址?

我有运行单个主页以提取其数据的代码

我需要从多个链接获取更多内容!

有可能吗?

这是我的代码

import java.io.IOException;

 import org.jsoup.Jsoup;
 import org.jsoup.nodes.Document;
 import org.jsoup.nodes.Element;
 import org.jsoup.select.Elements;

 public class NewClass {


  public static void main(String[] args) throws IOException {


  Document doc = Jsoup.connect("http://tamilblog.ishafoundation.org").get();
  Elements section = doc.select("section#content");
  Elements article = section.select("article");
  for (Element a : article) {
    System.out.println("Title : \n" + a.select("a").text());
    System.out.println("Article summary: \n" + a.select("div.entry-summary").text());
  }
}

}

我从这个单页获得输出现在我需要一次从几个页面(100 +链接)获取它。

并将其保存在文档中。

0 个答案:

没有答案