diff --git a/W10/CrawlerMain2/.gitignore b/W10/CrawlerMain2/.gitignore new file mode 100644 index 0000000..f68d109 --- /dev/null +++ b/W10/CrawlerMain2/.gitignore @@ -0,0 +1,29 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/W10/CrawlerMain2/.idea/.gitignore b/W10/CrawlerMain2/.idea/.gitignore new file mode 100644 index 0000000..7d05e99 --- /dev/null +++ b/W10/CrawlerMain2/.idea/.gitignore @@ -0,0 +1,10 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# 依赖于环境的 Maven 主目录路径 +/mavenHomeManager.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/W10/CrawlerMain2/.idea/libraries/jcommon_1_0_24.xml b/W10/CrawlerMain2/.idea/libraries/jcommon_1_0_24.xml new file mode 100644 index 0000000..cef0a8d --- /dev/null +++ b/W10/CrawlerMain2/.idea/libraries/jcommon_1_0_24.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/W10/CrawlerMain2/.idea/libraries/jfreechart_1_5_3.xml b/W10/CrawlerMain2/.idea/libraries/jfreechart_1_5_3.xml new file mode 100644 index 0000000..6fdf9d7 --- /dev/null +++ b/W10/CrawlerMain2/.idea/libraries/jfreechart_1_5_3.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/W10/CrawlerMain2/.idea/libraries/jsoup_1_17_2.xml b/W10/CrawlerMain2/.idea/libraries/jsoup_1_17_2.xml new file mode 100644 index 0000000..90ce41d --- /dev/null +++ b/W10/CrawlerMain2/.idea/libraries/jsoup_1_17_2.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/W10/CrawlerMain2/.idea/libraries/kumo_core_1_12.xml b/W10/CrawlerMain2/.idea/libraries/kumo_core_1_12.xml new file mode 100644 index 0000000..c74069d --- /dev/null +++ b/W10/CrawlerMain2/.idea/libraries/kumo_core_1_12.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/W10/CrawlerMain2/.idea/libraries/logback_classic_1_4_11.xml b/W10/CrawlerMain2/.idea/libraries/logback_classic_1_4_11.xml new file mode 100644 index 0000000..54a73cf --- /dev/null +++ b/W10/CrawlerMain2/.idea/libraries/logback_classic_1_4_11.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/W10/CrawlerMain2/.idea/libraries/logback_core_1_4_11.xml b/W10/CrawlerMain2/.idea/libraries/logback_core_1_4_11.xml new file mode 100644 index 0000000..fbdb3a1 --- /dev/null +++ b/W10/CrawlerMain2/.idea/libraries/logback_core_1_4_11.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/W10/CrawlerMain2/.idea/libraries/slf4j_api_2_0_9.xml b/W10/CrawlerMain2/.idea/libraries/slf4j_api_2_0_9.xml new file mode 100644 index 0000000..7c49634 --- /dev/null +++ b/W10/CrawlerMain2/.idea/libraries/slf4j_api_2_0_9.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/W10/CrawlerMain2/.idea/misc.xml b/W10/CrawlerMain2/.idea/misc.xml new file mode 100644 index 0000000..3653b1f --- /dev/null +++ b/W10/CrawlerMain2/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/W10/CrawlerMain2/.idea/modules.xml b/W10/CrawlerMain2/.idea/modules.xml new file mode 100644 index 0000000..8824534 --- /dev/null +++ b/W10/CrawlerMain2/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/W10/CrawlerMain2/CrawlerMain2.iml b/W10/CrawlerMain2/CrawlerMain2.iml new file mode 100644 index 0000000..e0317a0 --- /dev/null +++ b/W10/CrawlerMain2/CrawlerMain2.iml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/W10/CrawlerMain2/src/CrawlerMain.java b/W10/CrawlerMain2/src/CrawlerMain.java new file mode 100644 index 0000000..a6aafec --- /dev/null +++ b/W10/CrawlerMain2/src/CrawlerMain.java @@ -0,0 +1,299 @@ +import org.jsoup.Jsoup; +import org.jsoup.nodes.Document; +import org.jsoup.nodes.Element; +import org.jsoup.select.Elements; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.io.File; +import java.io.FileWriter; +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; + +// 1. 抽象策略接口(去掉public,因为文件名是CrawlerMain.java) +interface Crawler { + List startCrawl(); +} + +// 2. 抽象模板父类 +abstract class BaseCrawler implements Crawler { + protected final String baseUrl; + protected static final Logger logger = LoggerFactory.getLogger(BaseCrawler.class); + + protected BaseCrawler(String baseUrl) { + this.baseUrl = baseUrl; + } + + protected Document getPage(String url) throws Exception { + logger.info("正在请求页面:{}", url); + return Jsoup.connect(url) + .userAgent("Mozilla/5.0 (Windows NT 10.0; Win64; x64)") + .timeout(15000) + .get(); + } + + @Override + public abstract List startCrawl(); +} + +// 3. 实体类 +class Movie { + private final String title; + private final String rating; + + public Movie(String title, String rating) { + this.title = title; + this.rating = rating; + } + + public String getTitle() { return title; } + public double getRatingDouble() { return Double.parseDouble(rating); } + public String getRating() { return rating; } + + @Override + public String toString() { + return "电影:《" + title + "》 | 评分:" + rating; + } +} + +class Hero { + private final String name; + public Hero(String name) { this.name = name; } + public String getName() { return name; } + @Override + public String toString() { return "英雄:" + name; } +} + +class Weather { + private final String province; + private final String city; + private final String temperature; + private final String condition; + + public Weather(String province, String city, String temperature, String condition) { + this.province = province; + this.city = city; + this.temperature = temperature; + this.condition = condition; + } + + public String getProvince() { return province; } + public String getCity() { return city; } + public String getTemperature() { return temperature; } + public String getCondition() { return condition; } + + @Override + public String toString() { + return "省份:" + province + " | 城市:" + city + " | 天气:" + condition + " | 温度:" + temperature; + } +} + +// 4. 具体策略类 +class MovieCrawler extends BaseCrawler { + private static final Logger logger = LoggerFactory.getLogger(MovieCrawler.class); + + public MovieCrawler() { + super("https://movie.douban.com/top250"); + } + + @Override + public List startCrawl() { + List list = new ArrayList<>(); + logger.info("开始爬取豆瓣电影Top250"); + try { + for (int i = 0; i < 250; i += 25) { + Document doc = getPage(baseUrl + "?start=" + i); + Elements items = doc.select(".item"); + for (Element e : items) { + String title = e.select(".title").first().text().split("/")[0].trim(); + String rating = e.select(".rating_num").text(); + list.add(new Movie(title, rating)); + } + Thread.sleep(1000); + } + logger.info("豆瓣电影爬取完成,共{}条数据", list.size()); + } catch (Exception e) { + logger.error("电影爬取失败", e); + } + return list; + } +} + +class HeroCrawler extends BaseCrawler { + private static final Logger logger = LoggerFactory.getLogger(HeroCrawler.class); + + public HeroCrawler() { + super("https://pvp.qq.com/web201605/herolist.shtml"); + } + + @Override + public List startCrawl() { + List list = new ArrayList<>(); + logger.info("开始爬取王者荣耀英雄数据"); + try { + Document doc = getPage(baseUrl); + Elements heros = doc.select("ul.herolist li a"); + for (Element h : heros) { + String name = h.text().trim(); + if (!name.isEmpty()) { + list.add(new Hero(name)); + } + } + logger.info("英雄爬取完成,共{}条数据", list.size()); + } catch (Exception e) { + logger.error("英雄爬取失败", e); + } + return list; + } +} + +class WeatherCrawler extends BaseCrawler { + private static final Logger logger = LoggerFactory.getLogger(WeatherCrawler.class); + + private static final String[][] cities = { + {"北京","北京","101010100"},{"上海","上海","101020100"},{"天津","天津","101030100"},{"重庆","重庆","101040100"}, + {"河北","石家庄","101090101"},{"山西","太原","101100101"},{"辽宁","沈阳","101070101"},{"吉林","长春","101060101"}, + {"黑龙江","哈尔滨","101050101"},{"江苏","南京","101190101"},{"浙江","杭州","101210101"},{"安徽","合肥","101220101"}, + {"福建","福州","101230101"},{"江西","南昌","101240101"},{"山东","济南","101120101"},{"河南","郑州","101180101"}, + {"湖北","武汉","101200101"},{"湖南","长沙","101250101"},{"广东","广州","101280101"},{"海南","海口","101310101"}, + {"四川","成都","101270101"},{"贵州","贵阳","101260101"},{"云南","昆明","101290101"},{"陕西","西安","101110101"}, + {"甘肃","兰州","101160101"},{"青海","西宁","101150101"},{"内蒙古","呼和浩特","101080101"},{"广西","南宁","101300101"}, + {"西藏","拉萨","101140101"},{"宁夏","银川","101170101"},{"新疆","乌鲁木齐","101130101"}, + {"香港","香港","101320101"},{"澳门","澳门","101330101"},{"台湾","台北","101340101"} + }; + + public WeatherCrawler() { + super("https://www.weather.com.cn/weather/"); + } + + @Override + public List startCrawl() { + List list = new ArrayList<>(); + logger.info("开始爬取全国天气数据"); + try { + for (String[] city : cities) { + String province = city[0]; + String cityName = city[1]; + String code = city[2]; + Document doc = getPage(baseUrl + code + ".shtml"); + Element today = doc.select("ul.t li").first(); + if (today != null) { + String temp = today.select(".tem").text(); + String wea = today.select(".wea").text(); + list.add(new Weather(province, cityName, temp, wea)); + } + Thread.sleep(500); + } + logger.info("天气数据爬取完成,共{}条数据", list.size()); + } catch (Exception e) { + logger.error("天气爬取失败", e); + } + return list; + } +} + +// 5. 策略上下文Context +class CrawlerContext { + private Crawler crawlerStrategy; + private static final Logger logger = LoggerFactory.getLogger(CrawlerContext.class); + + public void setCrawlerStrategy(Crawler crawlerStrategy) { + this.crawlerStrategy = crawlerStrategy; + } + + public List executeCrawl() { + if (crawlerStrategy == null) { + logger.error("未设置爬取策略"); + return new ArrayList<>(); + } + return crawlerStrategy.startCrawl(); + } +} + +// 6. 工具类 +final class DataUtil { + private static final String PATH = "D:\\Java爬虫\\"; + private static final Logger logger = LoggerFactory.getLogger(DataUtil.class); + + private DataUtil() {} + + public static void initFolder() { + File dir = new File(PATH); + if (!dir.exists()) { + boolean created = dir.mkdirs(); + if (created) { + logger.info("创建目录:{}", PATH); + } + } + } + + public static void saveText(String fileName, String content) throws IOException { + if (content == null || content.isBlank()) { + logger.warn("保存文件内容为空,跳过:{}", fileName); + return; + } + try (FileWriter fw = new FileWriter(PATH + fileName)) { + fw.write(content); + } + logger.info("文件保存成功:{}", fileName); + } + + public static void addAll(String fileName, List dataList) throws IOException { + if (dataList == null || dataList.isEmpty()) { + logger.warn("批量数据为空,跳过保存:{}", fileName); + return; + } + StringBuilder sb = new StringBuilder(); + dataList.forEach(item -> sb.append(item).append("\r\n")); + saveText(fileName, sb.toString()); + } + + public static void analyzeData(List movieList, List heroList) { + if (movieList == null || heroList == null) { + logger.error("分析数据列表为空"); + return; + } + logger.info("===== 执行数据分析 ====="); + double sum = 0; + for (Movie movie : movieList) { + sum += movie.getRatingDouble(); + } + double avg = sum / movieList.size(); + System.out.println("电影平均评分:" + String.format("%.2f", avg)); + System.out.println("8.5分以上电影数量:" + movieList.stream().filter(m -> m.getRatingDouble() >= 8.5).count()); + System.out.println("英雄总数量:" + heroList.size()); + logger.info("数据分析结束"); + } +} + +// 7. 主程序(必须和文件名一致,public) +public class CrawlerMain { + private static final Logger logger = LoggerFactory.getLogger(CrawlerMain.class); + + public static void main(String[] args) { + logger.info("===== 爬虫程序启动 ====="); + CrawlerContext context = new CrawlerContext(); + + context.setCrawlerStrategy(new MovieCrawler()); + List movieList = (List) context.executeCrawl(); + + context.setCrawlerStrategy(new HeroCrawler()); + List heroList = (List) context.executeCrawl(); + + context.setCrawlerStrategy(new WeatherCrawler()); + List weatherList = (List) context.executeCrawl(); + + try { + DataUtil.initFolder(); + DataUtil.addAll("电影数据.txt", movieList); + DataUtil.addAll("英雄数据.txt", heroList); + DataUtil.addAll("天气数据.txt", weatherList); + DataUtil.analyzeData(movieList, heroList); + logger.info("===== 全部任务执行完成 ====="); + System.out.println("✅ 数据已全部保存至 D:\\Java爬虫"); + } catch (Exception e) { + logger.error("程序运行异常", e); + } + } +} \ No newline at end of file diff --git a/W10/CrawlerMain2/src/logback.xml b/W10/CrawlerMain2/src/logback.xml new file mode 100644 index 0000000..0564736 --- /dev/null +++ b/W10/CrawlerMain2/src/logback.xml @@ -0,0 +1,12 @@ + + + + + %d{HH:mm:ss} %-5level - %msg%n + + + + + + + \ No newline at end of file diff --git a/W10/策略模式类结构检查.docx b/W10/策略模式类结构检查.docx new file mode 100644 index 0000000..256ee9b Binary files /dev/null and b/W10/策略模式类结构检查.docx differ