离退休人员信息管理系统毕业设计(论文).doc
《离退休人员信息管理系统毕业设计(论文).doc》由会员分享,可在线阅读,更多相关《离退休人员信息管理系统毕业设计(论文).doc(66页珍藏版)》请在三一办公上搜索。
1、大连交通大学信息工程学院毕业设计(论文)任务书题 目 嘉兴市离退休人员信息管理系统任务及要求:1.设计(研究)内容和要求任务:1、 调查JAVA WEB开发当前技术的发展近况,完成实习报告,字数不少于3000,第三周交给指导老师。2、 结合自己实习情况安排进度,填写进度计划表,第二周完成后交给指导老师签字,并严格执行。3、 按照软件工程思想,独立完成系统的设计和程序开发,完成代码估计2000行左右。4、 用jsp和servlet技术实现离退休人员信息的管理功能。5、 程序简洁,算法可行,运行情况良好。要求:1、每周和指导老师至少见面沟通一次,回报课题进展情况,接受老师询问。2、接到任务书后,查
2、阅与题目及专业相关的外文资料进行翻译,要求不少于10000个外文字符,译出汉字不得少于3000,于第四周交给指导老师审阅。3、毕业设计第13周完成毕业论文的装订,并由指导老师评阅。论文要求12000字以上,包括综述、系统总体设计、系统实现、性能分析、结论等。4、教学第13周通过中软及教研室组织进行软件验收,验收时要提供软件使用说明书。5、于第13周提出毕业答辩申请并签字。6、第14 周答辩,要求制作PPT2.原始依据通过大学几年的学习,已经学习了诸如软件工程、数据库原理及应用、数据结构、C+、Visual Basic、JAVA等多门程序设计语言和网络等基础知识和专业知识,学生有能力而且可以独立
3、完成小中型项目的设计与开发。学校现有设备和环境可以提供给学生实习和上机,而且具有专业老师可以指导学生。3.参考文献1 张海藩.软件工程导论(第五版)M.清华大学出版社.2008.22 钱雪忠.黄建华.数据库原理及应用(第二版)M.北京邮电大学出版社.2007.83 韩万江.姜立新.软件开发项目管理M.机械工业出版社.20044 廖望.何俊.谢春旺等.MySQL案例教程M.冶金工业出版社.2007.85 耿祥义.张跃平.Java 2实用教程(第三版)M.清华大学出版社.2006.86 李刚.疯狂Java讲义M.电子工业出版社.2008.97 张铭(译).数据结构与算法分析M.电子工业出版社.20
4、10.18 耿祥义.张跃平.JSP实用教程M.清华大学出版社.2007.109 郑人杰.殷人昆.软件工程概论M.清华大学出版社.200410 Campbell R.Mconnell Stanley L.BrueMicro-EconomicsJset in century oldstyle by York Graphic Services200011 Java Servlet & JSP CookbookM.OReilly Press.200412 Bruce Eckel著Java编程思想北京机械工业出版社.2004.01指导教师签字:教研室主任签字: 年 月 日大连交通大学信息工程学院毕业设计
5、(论文)外文翻译学生姓名 庄黎彬 专业班级 软件工程08-3班 指导教师 阎树昕 刘瑞杰 职 称 高工讲师 所在单位 信息科学系软件工程教研室 教研室主任 刘瑞杰 完成日期 2012 年 4 月 13 日The Technology Of Java web1.JavaIf a scripting language can solve 80 percent of the client-side programming problems, what about the other 20 percentthe “really hard stuff?” The most popular solutio
6、n today is Java. Not only is it a powerful programming language built to be secure, cross-platform, and international, but Java is being continually extended to provide language features and libraries that elegantly handle problems that are difficult in traditional programming languages, such as mul
7、tithreading, database access, network programming, and distributed computing. Java allows client-side programming via the applet.An applet is a mini-program that will run only under a Web browser. The applet is downloaded automatically as part of a Web page (just as, for example, a graphic is automa
8、tically downloaded). When the applet is activated it executes a program. This is part of its beautyit provides you with a way to automatically distribute the client software from the server at the time the user needs the client software, and no sooner. The user gets the latest version of the client
9、software without fail and without difficult reinstallation. Because of the way Java is designed, the programmer needs to create only a single program, and that program automatically works with all computers that have browsers with built-in Java interpreters. (This safely includes the vast majority o
10、f machines.) Since Java is a full-fledged programming language, you can do as much work as possible on the client before and after making requests of the server. For example, you wont need to send a request form across the Internet to discover that youve gotten a date or some other parameter wrong,
11、and your client computer can quickly do the work of plotting data instead of waiting for the server to make a plot and ship a graphic image back to you. Not only do you get the immediate win of speed and responsiveness, but the general network traffic and load on servers can be reduced, preventing t
12、he entire Internet from slowing down.One advantage a Java applet has over a scripted program is that its in compiled form, so the source code isnt available to the client. On the other hand, a Java applet can be decompiled without too much trouble, but hiding your code is often not an important issu
13、e. Two other factors can be important. As you will see later in this book, a compiled Java applet can comprise many modules and take multiple server “hits” (accesses) to download. (In Java 1.1 and higher this is minimized by Java archives, called JAR files, that allow all the required modules to be
14、packaged together and compressed for a single download.) A scripted program will just be integrated into the Web page as part of its text (and will generally be smaller and reduce server hits). This could be important to the responsiveness of your Web site. Another factor is the all-important learni
15、ng curve. Regardless of what youve heard, Java is not a trivial language to learn. If youre a Visual Basic programmer, moving to VBScript will be your fastest solution, and since it will probably solve most typical client/server problems you might be hard pressed to justify learning Java. If youre e
16、xperienced with a scripting language you will certainly benefit from looking at JavaScript or VBScript before committing to Java, since they might fit your needs handily and youll be more productive sooner.to run its applets withi2.Scripting languagesPlug-ins resulted in an explosion of scripting la
17、nguages. With a scripting language you embed the source code for your client-side program directly into the HTML page, and the plug-in that interprets that language is automatically activated while the HTML page is being displayed. Scripting languages tend to be reasonably easy to understand and, be
18、cause they are simply text that is part of an HTML page, they load very quickly as part of the single server hit required to procure that page. The trade-off is that your code is exposed for everyone to see (and steal). Generally, however, you arent doing amazingly sophisticated things with scriptin
19、g languages so this is not too much of a hardship.This points out that the scripting languages used inside Web browsers are really intended to solve specific types of problems, primarily the creation of richer and more interactive graphical user interfaces (GUIs). However, a scripting language might
20、 solve 80 percent of the problems encountered in client-side programming. Your problems might very well fit completely within that 80 percent, and since scripting languages can allow easier and faster development, you should probably consider a scripting language before looking at a more involved so
21、lution such as Java or ActiveX programming.The most commonly discussed browser scripting languages are JavaScript (which has nothing to do with Java; its named that way just to grab some of Javas marketing momentum), VBScript (which looks like Visual Basic), and Tcl/Tk, which comes from the popular
22、cross-platform GUI-building language. There are others out there, and no doubt more in development.JavaScript is probably the most commonly supported. It comes built into both Netscape Navigator and the Microsoft Internet Explorer (IE). In addition, there are probably more JavaScript books available
23、 than there are for the other browser languages, and some tools automatically create pages using JavaScript. However, if youre already fluent in Visual Basic or Tcl/Tk, youll be more productive using those scripting languages rather than learning a new one. (Youll have your hands full dealing with t
24、he Web issues already.) 3.DatabaseYou know that a database is a collection of logically related data elements that maybe structured in various ways to meet the multiple processing and retrieval needs of organizations and individuals. Theres nothing new about databases-early ones were chiseled in sto
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 离退休人员 信息管理 系统 毕业设计 论文
链接地址:https://www.31ppt.com/p-3990393.html