From 14eb557c2e49023577b19b37d6397f105f2c9909 Mon Sep 17 00:00:00 2001 From: zhouzihao Date: Tue, 19 May 2026 16:54:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=20'W11/CrawlStrategy.java'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- W11/CrawlStrategy.java | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 W11/CrawlStrategy.java diff --git a/W11/CrawlStrategy.java b/W11/CrawlStrategy.java deleted file mode 100644 index 7f6248b..0000000 --- a/W11/CrawlStrategy.java +++ /dev/null @@ -1,11 +0,0 @@ -package com.example.datacollect.strategy; - -import com.example.datacollect.exception.ParseException; -import com.example.datacollect.model.Article; -import org.jsoup.nodes.Document; -import java.util.List; - -public interface CrawlStrategy { - List
parse(String url, Document doc) throws ParseException; - boolean supports(String url); -}