在线问卷调查系统的分析与实现方案
在线问卷调查系统的分析与实现方案
(WORD版可编辑)
摘 要
随着社会的发展,传统的市场、民意调查越来越不能满足社会的需要。在网络经济进一步深化的今天,建设一个高效、便利、安全的在线调查站点是十分必要的。以实现在市场研究、民意调查以及学术研究方面的科学的应用。
根据对本系统需求的分析,确定了系统应具有的功能和使用的对象。系统以在线问卷调查为主题进行开发,主要功能包括了用户管理、在线问卷管理、问卷审批等功能模块。任何用户都可以通过注册的方式成为本系统的用户,成为用户之后可以添加自己的问卷,对自己添加的问卷进行管理和统计,添加的问卷必须经过管理员审核之后才可以真正用于调查。系统管理员可以管理注册用户,也可以对用户添加的问卷进行审核,审核通过的问卷则可以用于调查,任何匿名用户都可以通过浏览器访问本系统进行投票,投票之后即可查看到当前投票的支持率。
本文首先介绍了在线调查的背景及意义,接着介绍了本系统开发的技术及相关工具。其次介绍对系统的分析与设计过程。再次根据系统的分析介绍了系统的实现过程,包括各个功能模块的实现。最后对本系统进行总结。通过本系统的设计与实现,基本完成了预定的功能,能够支持不同用户发布在线问卷,也支持匿名用户进行访问投票,满足了系统的要求,但是本系统还存在诸多不足,希望在今后能够不断优化升级,使之能真正解决目前在线调查的实际问题。
关键词:问卷调查,J2EE,B/S结构
I
The analysis and implementation of
online survey system
Abstract
With the development of the society, the traditional market, opinion polls more and more can't satisfy the need of the society. In the network economy further today, building an efficient, convenient and safe online survey site is very necessary. In order to achieve in market research, opinion polls and academic research in the application of science.
According to the analysis of this system requirements, make sure the system should have the function and use of the object. System to online questionnaire survey as the theme of development, main functions include user management, online questionnaire management, questionnaire for examination and approval and function module. Any user can through the registration way to become the customer of this system, users can become after add your own questionnaire must go through the review later can really for investigation. The system administrator can manage registered users, also can add to the user questionnaire audit, the audit through the questionnaire survey, it can be used in any anonymous user can access the system through the browser to vote, the vote can check after the vote to support.
This paper first introduces the background and significance of the online survey, then introduced this system development technology and related tools. Second, introduces the system analysis and design process. According to the analysis of the system to introduce the system implementation process, including the realization of each function module. Finally summarizes this system. Through the design and realization of the system, the basic completed the scheduled function, can support by different users online questionnaire, also supports anonymous users access to vote, to meet the requirements of the system, but the system also has many shortage, hope that in the continuous optimization and upgrading, so that it can really solve the practical problems of the online survey.
Keywords: questionnaire survey system; Data processing; persistent; Java
II
在线问卷调查系统的分析与实现方案
目 录
摘 要 ................................................................... I
Abstract ..........................................................................................................................................................II 1 绪论 .................................................................. 1 1.1课题背景 .............................................................. 1 1.1.1问卷调查的特点 ...................................................... 1 1.1.2网上问卷调查的特点 .................................................. 1 1.1.3网上问卷的基本解决方案 .............................................. 1 1.2目的和意义 ............................................................ 2 1.3开发工具及技术 ........................................................ 2 1.3.1开发工具 ............................................................ 2 1.3.2 J2EE ............................................................... 3 1.3.3 JavaScript ......................................................... 3 1.3.4 Struts 2简介 ....................................................... 4 1.3.5 Hibernate简介 ...................................................... 4 1.4软硬件需求 ............................................................ 4 2 需求分析 .............................................................. 5 2.1可行性分析 ............................................................ 5 2.1.1技术的可行性 ........................................................ 5 2.1.2经济的可行性 ........................................................ 6 2.1.3操作可行性 .......................................................... 6 2.1.4法律的可行性 ........................................................ 6 2.2系统用户用例图 ........................................................ 6 2.2.1管理员用例图 ........................................................ 6 2.2.2普通用户用例图 ...................................................... 7 2.3功能模块需求分析 ...................................................... 7 2.4设计的基本思想 ........................................................ 8 2.5性能需求 .............................................................. 8 2.5.1系统的安全性 ........................................................ 8 2.5.2数据的完整性 ........................................................ 8 2.6界面需求 .............................................................. 9 3 系统分析与设计 ....................................................... 10 3.1数据库的分析与设计 ................................................... 10 3.1.1数据库的概念结构设计 ............................................... 10 3.1.2数据库的逻辑结构设计 ............................................... 13 3.1.3数据库的连接原理 ................................................... 14 3.2中文乱码问题处理 ..................................................... 15 4 系统功能实现 ......................................................... 17 4.1系统登陆页面实现 ..................................................... 17 4.2总体功能模块 ......................................................... 18 4.2.1问卷信息管理 ....................................................... 19
4.2.2问卷题目管理 ....................................................... 20 4.2.3调查结果统计 ....................................................... 23 4.2.4系统公告管理 ....................................................... 25 4.2.5修改个人密码 ....................................................... 26 4.2.6安全退出系统 ....................................................... 26 4.3普通用户模块 ......................................................... 26 4.3.1系统主页面实现 ..................................................... 26 4.3.2问卷信息查询 ....................................................... 27 4.3.3用户注册 ........................................................... 27 4.3.4参与问卷调查 ....................................................... 28 5 系统测试 .............................................................. 30 5.1系统测试目的与意义 ................................................... 30 5.2测试过程 ............................................................. 31 5.2.1主页面的登录模块测试 ............................................... 31 5.3其他错误 ............................................................. 31 结 论 .................................................................. 32 参考文献 ................................................................ 33 外文原文 ................................................................ 35 外文翻译 ................................................................ 39
在线问卷调查系统的分析与实现方案
1 绪论
1.1课题背景
问卷调查是收集第一手数据或资料的常用途径,问卷调查法使用面广、获取数据便捷、研究成本较低,在很多领域都使用的非常广泛,20世纪80年代后,随着个人计算机(pc)的出现和逐渐普及,计算机日益成为调查研究不可缺少的工具,到90年代之后,随着互联网(internet)的广泛应用,各种基于网络的调查方法开始出现:计算机辅助网络访谈、移动调查等。
目前基于internet的网络问卷调查分析系统用的非常频繁和普遍,才会有那么多的企业和公司在使用网络问卷调查法来获取信息。然而每开发一个新的网络问卷调查系统需要耗费大量的时间,很多已有的产品功能过于强大、设置负责、费用过于昂贵等缺点。 1.1.1问卷调查的特点
问卷调查对象是经过思考之后才对问卷做出反应的。这有助于获得真实、准确的资料。但是,往往由于受试者发现了某些属于敏感性的问题而加以回避,从而拒答或回答不真实。这就会造成问卷回收率下降,或者资料可靠性下降,而研究者又无法作进一步的追索,单从回收的答卷上又无法判断答案的真伪,使回收的问卷失去了价值。因此,设计好问题,合理地安排问题顺序是问卷设计的重要任务。
问卷调查适应于大样本或小样本的情况。问卷调查与访问调查情况不同,访问调查必须面对面地提出问题,收集口述材料。由于人力、财力的原因,调查的样本数不可能太多,调查的地域不可能太广。而问卷调查是依赖调查对象自我填答,问卷可以通过邮寄分发,也可以面对面分发。因此样本数可多可少,有时仅选数十人作问卷调查,有些课题,样本则多达数千以至过万人。
有利于获得定量资料。问卷调查不仅能取得数量标志的数量资料,还可以获得有关属性、品质、态度为标志的计数资料。这些资料都能通过统计处理的方法进行量化分析,使结果更为客观、真实、系统、科学化,提高了研究结果的水平。随着计算机网络的发展,网上问卷调查慢慢占据了主导地位。他解决了人工问卷的很多问题。是问卷调查更加容易和便利。
1.1.2网上问卷调查的特点
(1)问卷法调查结果容易量化调查的问题可以固定的形式,避免主观偏见。 (2)问卷调查结果便于统计与分析,节省了处理结果的时间。 (3)问卷调查可以进行大规模的调查,使结果更有参考价值。 (4)问卷调查以政府、企业等为主体,具有普遍性。 (5)问卷的结果可以持久的保存,作为将来的参考。 1.1.3网上问卷的基本解决方案
尽量消除被调查者的警戒心理,拉近与被调查者距离的原则。防御心是人性最自然
1
搜索“diyifanwen.net”或“第一范文网”即可找到本站免费阅读全部范文。收藏本站方便下次阅读,第一范文网,提供最新资格考试认证在线问卷调查系统的分析与实现方案 全文阅读和word下载服务。
相关推荐: