没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
重庆邮电大学
毕业设计(论文)
设计(论文)题目:
网络舆情数据采集系统开发
学 院 名 称 :
计算机科学与技术学院
学 生 姓 名 :
专 业 :
信息安全
班 级 :
学 号 :
指 导 教 师 :
答辩组 负责人 :
填表时间: 2013 年 6 月
重庆邮电大学教务处制
重庆邮电大学本科毕业设计(论文)
- I -
摘 要
互联网发展至今,传统媒体已经日渐落寞,作为新生代媒体,网络已经在这一领域占据
了越来越重要的地位,而且这种趋势还在上涨。现今,越来越多的人通过互联网来表达自己
对社会现状的态度和政治诉求等等,从互联网这一自由开放的媒体中了解民生,开展网络舆
情信息采集和分析,已经各级政府部门目前面临的重要课题。
互联网作为新生代媒体,其发展势头迅猛,各大门户网站纷纷进军互联网领域抢占市场,
竞争十分激烈,而其中新浪在这场竞争中表现得相当出色,新浪微博成为民众信息分享平台
的首选。本论文就设计了一个专门针对新浪微博的舆情数据采集系统,它包含如下几个功能:
查询指定用户的微博信息、查询指定微博的评论信息和转发信息、查询指定用户的所有粉丝
和搜索该用户的指定粉丝、查询指定用户的所有关注和搜索该用户的指定关注以及将上述信
息保存到本地数据库中,供以后对数据进行分析。
该系统是基于新浪官方提供的 API 来开发的,采用 Java 和 MySQL 实现软件的开发,Java
实现软件的界面和数据展示,MySQL 实现数据的存储。工作时,它根据用户输入的信息,采
用多线程方式去采集用户数据,主界面弹出等待提示框,给用户提供良好的用户体验。在展
示数据的时候,考虑到微博数据的庞大,该系统采用了分页技术来展示数据,而且对界面进
行了美化,给用户提供一个美观的界面浏览。
【关键词】网络舆情 新浪微博 Java MySQL 微博 API
重庆邮电大学本科毕业设计(论文)
- II -
ABSTRACT
Since the development of Internet, traditional media has already lonely, as a new generation of
media, the network has become more and more important in this field, and the trend is still rising.
Nowadays, more and more people through the Internet to express themselves on the social status of
the attitude and political appeal and so on, to understand the people's livelihood from the Internet
which is a free and open media, network public opinion information collection and analysis, an
important issue has been at all levels of government departments are currently facing.
Internet as a new generation of media, the momentum of rapid development, the major portals
have to enter the field of Internet to seize the market, competition is very fierce, and Sina in this
competition performed very well, Sina micro-blog public information sharing platform of choice.
This thesis is to design a specific Sina micro-blog public opinion data acquisition system, which
includes the following functions: query specifies the user's micro-blog, micro-blog information
query specifies the comment information and forwarding information, query specifies the user all
the fans and search the user specified fans, query specifies all of the user's attention and search the
specified user attention and the information is saved to a local database, for later data analysis.
The system is based on API to Sina official development, developed using Java and MySQL
software, Java software interface and data display, MySQL data storage. When working, it
according to the input information of a user, using multiple threads to collect user data, the main
interface pops up wait for a prompt box, to provide users with a good user experience. In the display
of the data when the micro-blog, considering the huge data, the system uses the paging technique to
display data, and the interface is beautiful, to provide users with a beautiful interface to browse.
【Key words】Network public opinion Sina micro-blog Java MySQL Micro-blog API
重庆邮电大学本科毕业设计(论文)
- III -
目 录
前 言 ..................................................................................................................................................1
第一章 系统相关技术概述 ..............................................................................................................2
第一节 Java 技术概述...............................................................................................................2
一、Java 简要介绍................................................................................................................2
二、GUI 图形用户界面........................................................................................................2
三、多线程............................................................................................................................3
四、JDBC 数据库连接 .........................................................................................................3
第二节 新浪微博 Java SDK........................................................................................................4
一、微博 Java SDK 概述......................................................................................................4
二、授权认证........................................................................................................................4
第三节 MySQL 技术概述...........................................................................................................5
一、MySQL 概述..................................................................................................................5
二、MySQL 的特性..............................................................................................................5
第四节 本章小结.........................................................................................................................6
第二章 需求分析 ..............................................................................................................................7
第一节 系统功能需求.................................................................................................................7
一、系统目标........................................................................................................................7
二、功能分析........................................................................................................................7
三、系统层次模块图............................................................................................................8
第二节 系统性能要求.................................................................................................................9
第三节 运行环境.........................................................................................................................9
第四节 系统用例图...................................................................................................................10
第五节 本章小结.......................................................................................................................10
第三章 系统设计 ............................................................................................................................11
第一节 系统结构分析...............................................................................................................11
一、系统结构图..................................................................................................................11
第二节 系统功能模块分析.......................................................................................................12
一、系统模块设计..............................................................................................................12
二、各子功能模块分析......................................................................................................12
第三节 系统数据库设计...........................................................................................................13
一、系统数据库对象..........................................................................................................13
重庆邮电大学本科毕业设计(论文)
- IV -
二、系统数据表..................................................................................................................13
第四节 系统各模块设计...........................................................................................................16
一、启动模块的设计..........................................................................................................16
二、查看微博的设计..........................................................................................................17
三、查看粉丝的设计..........................................................................................................19
四、查看关注的设计..........................................................................................................21
五、查看评论的设计..........................................................................................................22
六、查看转发的设计..........................................................................................................23
第五节 本章小结.......................................................................................................................25
第四章 系统实现 ............................................................................................................................26
第一节 开发环境的搭建...........................................................................................................26
一、Java 开发环境的搭建..................................................................................................26
二、数据库环境的搭建......................................................................................................28
第二节 各功能模块的具体实现...............................................................................................29
一、授权认证的实现..........................................................................................................29
二、启动模块的实现..........................................................................................................30
三、查看微博的实现..........................................................................................................31
四、查看粉丝的实现..........................................................................................................35
五、查看关注的实现..........................................................................................................36
六、查看评论的实现..........................................................................................................38
七、查看转发的实现..........................................................................................................39
第三节 本章小结.......................................................................................................................40
第五章 系统效果展示 ....................................................................................................................41
第一节 效果展示.......................................................................................................................41
一、主界面效果展示..........................................................................................................41
二、查看微博的效果展示..................................................................................................42
三、查看粉丝的效果展示..................................................................................................42
四、查看关注的效果展示..................................................................................................43
五、查看评论的效果展示..................................................................................................44
六、查看转发的效果展示..................................................................................................45
第二节 本章小结.......................................................................................................................45
结 论 ................................................................................................................................................46
致 谢 ................................................................................................................................................47
参考文献............................................................................................................................................48
附 录 ................................................................................................................................................49
剩余65页未读,继续阅读
资源评论
yyyyyyhhh222
- 粉丝: 452
- 资源: 6万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功