You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
356 B
13 lines
356 B
package crawler;
|
|
|
|
public class CrawlerTest {
|
|
public static void main(String[] args) {
|
|
// 爬取网页
|
|
BaseCrawler webCrawler = new WebPageCrawler("https://www.baidu.com");
|
|
webCrawler.crawl();
|
|
|
|
// 爬取图片
|
|
BaseCrawler imgCrawler = new ImageCrawler("https://www.baidu.com");
|
|
imgCrawler.crawl();
|
|
}
|
|
}
|