英语知识学习助手设计报告.doc

上传人:一*** 文档编号:2642922 上传时间:2020-04-26 格式:DOC 页数:27 大小:429.58KB
返回 下载 相关 举报
英语知识学习助手设计报告.doc_第1页
第1页 / 共27页
英语知识学习助手设计报告.doc_第2页
第2页 / 共27页
点击查看更多>>
资源描述

《英语知识学习助手设计报告.doc》由会员分享,可在线阅读,更多相关《英语知识学习助手设计报告.doc(27页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、!-数据库课程设计报告 设计题目: 英语学习助手系统 指导教师: 卢照 专 业: 网络工程 班 级: 1404 学生姓名: 刘泽(2014100409) 王 慧(2014100406) 段慧强(2014100457) 赵 儒 (2014100405) 徐世豪 (201410032) 目录需求分析3DFD数据流图3功能设计:4功能分析:4SC结构图5数据库设计:5ER图5数据字典5数据库逻辑设计8数据库物理实现10系统实现12软件环境:12硬件环境13关键代码13界面实现17课程设计分工:20结束语:20需求分析随着社会的高速发展,社会对我们日常的要求也是越来越高,比如说掌握一门外语,外语的学习

2、中,其中英语是不可或缺的,对英语的学习及其重要,因此,我们针对这一社会现状,特别开发了一个小巧的英语在线学习助手,由于我们是一个web程序,所以用户只需要有浏览器,可以接上网络 ,那么就可以很方便的使用我们的的学习助手。DFD数据流图顶层DFD一层DFD功能设计:功能分析:1) 实现英语单词的录入、修改、删除等基本操作。 2) 实现常用英语单词例句的录入、修改、删除等基本操作。 3) 实现英语单词检索、翻译等。 4) 常用英语单词例句检索。 5) 能够检索出短文极其翻译对照表。 6) 具有数据备份和数据恢复功能。SC结构图数据库设计:ER图数据字典User表 用于用户的登陆数据项id唯一标识登

3、陆名登陆密码昵称角色idRole表 角色分类数据项id唯一标识角色名称Menu表 系统的功能数据项id唯一标识功能名称功能路径功能pidmenu_role表 角色对应的功能数据项id唯一标识角色id功能idWord表 词汇的存储数据项id唯一标识英文中文词汇级别example_sentence表 短语的存储数据项id唯一标识关键字例句翻译Essay表 短文的存储数据项id唯一标识英文中文数据库逻辑设计User中文说明字段类型说明id唯一标识UserIDint(8) NOT NULL登陆名loginNamevarchar(32) NULL登陆密码LoginPasswordvarchar(32)

4、NULL昵称RealNamevarchar(32) NULL角色idfkRoleIdint(8) NULLRole中文说明字段类型说明id唯一标识RoleIDint(8) NOT NULL角色名称RoleNamevarchar(32) NULLMenu中文说明字段类型说明id唯一标识MenuIDint(8) NOT NULL功能名称MenuNamevarchar(32) NULL功能路径MenuURLvarchar(128) NULL功能pidMenuPidint(8) NULLmenu_role中文说明字段类型说明id唯一标识MenuRoleIDint(8) NOT NULL角色idRole

5、IDint(8) NULL功能idMenuIDint(8) NULLWord中文说明字段类型说明id唯一标识wordIDint(8) NOT NULL英文englishWordvarchar(16) NULL中文chineseWordvarchar(16) NULL词汇级别levervarchar(16) NULLexample_sentence中文说明字段类型说明id唯一标识esIDint(8) NOT NULL关键字keyWordvarchar(32) NULL例句examplevarchar(255) NULL翻译example_chinesevarchar(255) NULLEssay

6、中文说明字段类型说明id唯一标识essayIDint(8) NOT NULL英文essayvarchar(600) NULL中文essay_chinesevarchar(600) NULL数据库物理实现Essay 表 用于学习助手的短文数据存储example_sentence 表 用于学习助手的短语数据存储Word表 用于学习助手的词汇数据存储 Users 表 用于记录学习助手的用户信息Role 表 存储学习助手的角色menu_role 表 用来储存角色对应的关系Menu表 标明学习助手的拥有的功能系统实现软件环境:Web服务器: tomcat 8.0数据库:mysql 5.6开发工具:ecl

7、ipse设计语言:java硬件环境操作系统:window8.1Cpu: inter i5内存: 8g硬盘: 500g关键代码词汇处理部分WebServlet(/WordSer.do)public class WordSer extends HttpServlet private WordDaoImpl daoImpl=null;private Logger logger = Logger.getLogger(WordSer.class.getName();public void doGet(HttpServletRequest request, HttpServletResponse resp

8、onse)throws ServletException, IOException doPost(request, response);public void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException String type = RequestUtils.getRequestField(request, type,);System.out.println(type);if (type.equals() showWords(request

9、, response);System.out.println(请求了用户列表);return;if (type.equals(addWord) addWords(request, response);System.out.println(插入用户);return;if (type.equals(findByKey) findWordsByKey(request, response);System.out.println(根据key查询词汇);return;if (type.equals(updateWord) System.out.println(修改词汇);updateWords(reque

10、st, response);return;if (type.equals(delWord) System.out.println(删除词汇);delWords(request, response);return;private void delWords(HttpServletRequest request,HttpServletResponse response) / TODO Auto-generated method stubString wordIDs = request.getParameterValues(wordID);System.out.println(wordIDs的长度-

11、+wordIDs.length);Map map = new HashMap();if (wordIDs.length!=0) daoImpl.delWords(wordIDs);else map.put(stat, FAIL!);map.put(msg, 删除用户失败!);JsonUtils.jsonOutPrint(response, JsonUtils.getJson(map) ;return;map.put(stat, OK!);map.put(msg, 删除用户成功!);JsonUtils.jsonOutPrint(response, JsonUtils.getJson(map) ;

12、private void updateWords(HttpServletRequest request,HttpServletResponse response) / TODO Auto-generated method stubWord word = new Word();Map map = new HashMap();try BeanUtils.copyProperties(word, request.getParameterMap();System.out.println(word.getEnglishWord()+word.getChineseWord()+word.getLever(

13、);daoImpl.updateWord(word);map.put(stat, OK!);map.put(msg, 修改用户成功!); catch (IllegalAccessException e) / TODO Auto-generated catch blockmap.put(stat, FAIL!);map.put(msg, 修改用户失败!);e.printStackTrace(); catch (InvocationTargetException e) / TODO Auto-generated catch blockmap.put(stat, FAIL!);map.put(msg

14、, 修改用户失败!);e.printStackTrace();JsonUtils.jsonOutPrint(response, JsonUtils.getJson(map) ;private void findWordsByKey(HttpServletRequest request,HttpServletResponse response) / TODO Auto-generated method stubString traType = eng;String tra = request.getParameter(tra);Word word = null;if (tra.equals(ch

15、i) String englishWord = request.getParameter(key);System.out.println(英文-+englishWord);daoImpl= new WordDaoImpl();word =daoImpl.getWordBykey(englishWord, traType);if (tra.equals(eng) String chineseWord = request.getParameter(key);System.out.println(汉文-+chineseWord);traType = chi;daoImpl= new WordDaoI

16、mpl();word =daoImpl.getWordBykey(chineseWord, traType);if (word != null) JsonUtils.jsonOutPrint(response, JsonUtils.getJson(word);System.out.println(中英互译完成);private void showWords(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException List list= null;daoImpl= n

17、ew WordDaoImpl();Page page = new Page();page.setPagesize(Integer.parseInt(request.getParameter(rows);page.setPage(Integer.parseInt(request.getParameter(page);/page.setRows(daoImpl.getTotal();log(page页码:-+page.getPage();list = daoImpl.showWord(page);int total = daoImpl.getTotal();String json =total:+

18、total+,rows:+ JsonUtils.getJson(list)+;System.out.println(json);JsonUtils.jsonOutPrint(response, json);private void addWords(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException daoImpl= new WordDaoImpl();Word word = new Word();Map map = new HashMap();try Bea

19、nUtils.copyProperties(word, request.getParameterMap();System.out.println(word.getEnglishWord()+word.getChineseWord()+word.getLever();daoImpl.addWord(word);map.put(stat, OK!);map.put(msg, 插入用户成功!); catch (IllegalAccessException e) / TODO Auto-generated catch blockmap.put(stat, FAIL!);map.put(msg, 插入用户失败!);e.printStackTrace(); catch (InvocationTargetException e) / TODO Auto-generated catch blockmap.put(stat, FAIL!);map.put(msg, 插入用户失败!);e.printStackTrace();JsonUtils.jsonOutPrint(response, JsonUtils.getJson(map) ;界面实现首页登陆图用户功能界面 及功能管理员的用户管理管理员的权限管理词汇管理的添加词汇管理的修改课程设计分工:四号字体编辑结束语:四号字体编辑

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育专区 > 教案示例

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁