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.

10 lines
276 B

import org.jsoup.nodes.Element;
import java.util.List;
// 策略接口:所有网站爬取都必须实现这两个方法
public interface CrawlStrategy {
// 爬取电影
List<Movie> crawl(int limit);
// 解析电影元素
Movie parseMovie(Element element);
}