• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
6075wyf
博客园 | 首页 | 新随笔 | 新文章 | 联系 | 订阅 订阅 | 管理
上一页 1 2 3 4 5 6 ··· 23 下一页

2025年2月17日

20250217
摘要: 开学第一天,学习了Android和大数据,对大数据很感冒,对安卓也有期待。 本学期决心努力。 阅读全文
posted @ 2025-02-17 23:15 雨愈 阅读(5) 评论(0) 推荐(0)
 
 

2025年2月4日

20250204
摘要: 整合所有功能到一个完整的项目中。 测试项目功能,修复问题。 // 主程序入口public class Main { public static void main(String[] args) { // 启动爬虫 fetch_hot_words("https://example.com/hot-wo 阅读全文
posted @ 2025-02-04 23:51 雨愈 阅读(61) 评论(0) 推荐(0)
 
 

2025年2月3日

20250203
摘要: 实践在JavaWeb页面中动态生成ECharts图表。 显示热词词云和关系图。 // 在 Servlet 中设置热词数据request.setAttribute("hotWords", hotWords);request.getRequestDispatcher("hot_words.jsp").f 阅读全文
posted @ 2025-02-03 22:51 雨愈 阅读(37) 评论(0) 推荐(0)
 
 

2025年2月2日

20250202
摘要: 学习ECharts的基本用法。 将ECharts集成到JavaWeb项目中。 <div id="main" style="width: 600px;height:400px;"></div><script src="https://cdn.jsdelivr.net/npm/echarts/dist/ 阅读全文
posted @ 2025-02-02 18:57 雨愈 阅读(11) 评论(0) 推荐(0)
 
 

2025年2月1日

20250201
摘要: 实践开发热词展示页面。 使用JSP显示热词数据。 <%@ page language="java" contentType="text/html;charset=UTF-8" %> <html> <head> <title>热词分析</title> </head> <body> <h1>信息领域热词 阅读全文
posted @ 2025-02-01 21:57 雨愈 阅读(9) 评论(0) 推荐(0)
 
 

2025年1月31日

20250131
摘要: 学习JavaWeb开发基础。 学习Servlet和JSP。 @WebServlet("/HotWordsServlet") public class HotWordsServlet extends HttpServlet { protected void doGet(HttpServletReque 阅读全文
posted @ 2025-01-31 20:57 雨愈 阅读(12) 评论(0) 推荐(0)
 
 

2025年1月30日

20250130
摘要: 实践将Hive分析结果导出到MySQL。 验证数据一致性。 -- 在 MySQL 中查询数据 SELECT * FROM hot_words_analysis LIMIT 10; 阅读全文
posted @ 2025-01-30 20:51 雨愈 阅读(12) 评论(0) 推荐(0)
 
 

2025年1月29日

20250129
摘要: 学习Sqoop的安装与配置。 学习使用Sqoop将Hive数据导出到MySQL。 # 导出数据到 MySQL sqoop export --connect jdbc:mysql://localhost:3306/hot_words_db \ --username root --password ro 阅读全文
posted @ 2025-01-29 19:57 雨愈 阅读(12) 评论(0) 推荐(0)
 
 

2025年1月28日

20250128
摘要: 实践使用Hive进行数据离线分析。 存储分析结果。 -- 创建分析表 CREATE TABLE IF NOT EXISTS hot_words_analysis AS SELECT word, SUM(frequency) AS total_frequency FROM hot_words GROU 阅读全文
posted @ 2025-01-28 22:51 雨愈 阅读(51) 评论(0) 推荐(0)
 
 

2025年1月27日

20250127
摘要: 学习Hive的安装与配置。 学习Hive SQL语法。 -- 创建数据库 CREATE DATABASE IF NOT EXISTS hot_words_db; -- 创建表 USE hot_words_db; CREATE TABLE IF NOT EXISTS hot_words ( word 阅读全文
posted @ 2025-01-27 18:56 雨愈 阅读(11) 评论(0) 推荐(0)
 
 
上一页 1 2 3 4 5 6 ··· 23 下一页

公告


博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3