论文格式
电气工程 会计论文 金融论文 国际贸易 财务管理 人力资源 轻化工程 德语论文 工程管理 文化产业管理 信息计算科学 电气自动化 历史论文
机械设计 电子通信 英语论文 物流论文 电子商务 法律论文 工商管理 旅游管理 市场营销 电视制片管理 材料科学工程 汉语言文学 免费获取
制药工程 生物工程 包装工程 模具设计 测控专业 工业工程 教育管理 行政管理 应用物理 电子信息工程 服装设计工程 教育技术学 论文降重
通信工程 电子机电 印刷工程 土木工程 交通工程 食品科学 艺术设计 新闻专业 信息管理 给水排水工程 化学工程工艺 推广赚积分 付款方式
  • 首页 |
  • 毕业论文 |
  • 论文格式 |
  • 个人简历 |
  • 工作总结 |
  • 入党申请书 |
  • 求职信 |
  • 入团申请书 |
  • 工作计划 |
  • 免费论文 |
  • 合作期刊 |
  • 论文同学网 |
搜索 高级搜索

当前位置:论文格式网 -> 毕业论文 -> 其他专业论文
毕业论文标题:

基于java技术的邮件系统设计与实现

 本文ID:LWGSW17222 价格:收费积分/100
扫一扫 扫一扫
本站会员可自行下载:下载地址 基于java技术的邮件系统设计与实现 (收费:5000 积分)  

论文字数:17915,页数:38

摘  要

 电子邮件(简称E-mai1)又称电子信箱、电子邮政,它是—种用电子手段提供信息交换的通信方式。它是全球多种网络上使用最普遍的一项服务。这种非交互式的通信,加速了信息的交流及数据传送,它是—个简易、快速的方法。通过连接全世界的Internet,实现各类信号的传送、接收、存贮等处理,将邮件送到世界的各个角落。到目前为止,可以说电子邮件是Internet资源使用最多的一种服务,E-mai1不只局限于信件的传递,还可用来传递文件、声音及图形、图像等不同类型的信息。
 本邮件系统采用基于线程池的SMTP服务器、POP3服务器架构,支持软件升级,构建适合中小型企业应用的具有高性能、高可靠和卓越的安全性的跨平台的专业邮件系统。另外系统还可以作为嵌入式开发的参考系统,便于以后可以更广范围的应用扩充。邮件系统采用适合用于实现高性能的邮件服务器的基于线程池的SMTP服务器、POP3服务器架构,采用并实现了线程驱动机制,所有操作使用线程运行;服务器内部实现了域名解析机制,并实现域名/地址缓存;将数据库技术引入到用户的管理模块。使用的数据库动态配置技术,使用户管理模块能够独立于数据库;用户数据缓存减小了系统的操作,有助于系统性能的提高;利用了Java语言作为开发工具,使系统具有了跨平台能力。Java语言的垃圾回收机制,既防止了内存泄漏,又提高了服务器的性能。

关键词:电子邮件,日志管理,JAVAMAIL,线程池,域名解析,邮件发送和接收协议

Abstract

 E-mail is a kind of electronic means of information exchange means of communication. It is a global network on a variety of the most common use of the service. This non-interactive communications and accelerate the exchange of information and data transmission, it is - a simple, fast way. Connect the world through the Internet, the realization of various types of signal transmission, receiving, storage and other processing, e-mail will be sent to all corners of the world. So far, e-mail can be said is the most used Internet resources as a service, E-mai1 not limited to letters of transfer, can also be used to transfer files, sounds and graphics, images and other different types of information
After the development of the solution, the essay brings the plan the system to betrue,and tests the real system either. Most capability of the system meets ouranticipation.At the end of the essay,there is a detailed demostration of the real system. Aimed at the problems above, A cross-platform mail system uses Java to realize. The work platform of this system adopts Unix system, offering the thorough stability guarantee for service system of mail; Adopts SMTP server、POP3 server, support the software to be upgraded .The specialized mail system is structured for small and medium enterprise, which features high performance, high reliability and significant security with self-property right. In addition, the system can also be as the reference system of embedded development .The mail system use thread-driven mechanism; every operation is performed by thread; the server internally supports domain resolution, and implements domain/address caches; and the user management module uses the techniques used in database. The dynamic database configuration technique makes the user management independent of database; user data caches reduce system I/O, and improve the system performance; using Java as implementation tool makes the system cross-platform. The garbage collector of Java not only prevents memory leakage, but also improves the system performance.

Keywords:  Email, Log management, Thread pool, Domain Name System  resolving,
            JAVAMAIL,Simple Mail Transfer Protocol, Post Office Protocol version
目  录

摘  要 I
Abstract II
第1章 绪 论 1
1.1 引言 1
1.2 电子邮件系统的工作原理 2
1.3 主要工作与本文组织 3
1.4 本章小结 4
第2章 系统框架及特色 5
2.1 系统模块结构 5
2.2 电子邮件系统相关协议分析 6
2.2.1 Internet邮件发送和接收协议——SMTP协议 7
2.2.2 Internet邮件提取协定 8
2.2.3 POP3协议 9
2.2.4 IMAP协议 10
2.3 电子邮件系统的特点 12
2.4 小结 12
第3章 电子邮件服务器系统结构 13
3.1 I/O模型分析 13
3.2 几种服务器结构研究分析 14
3.2.1 多进程并发服务器 15
3.2.1.1 单个请求/进程 15
3.2.1.2 进程池 15
3.2.2 多线程并发服务器 17
3.2.2.1 单个请求/线程 17
3.2.2.2 线程池 17
3.2.3 单进程并发服务器 18
3.3 设计方案的选择 19
3.4 小结 20
第4章 电子邮件服务器的实现 21
4.1 功能/性能目标 21
4.2 系统模块构成及实现 21
4.2.1 用户管理 22
4.2.3 POP3模块 22
4.3 小结 25
第5章 功能及性能测试 26
5.1 项目测试 26
5.1.1 登入主界面 26
5.1.2 发送邮件测试 26
5.1.3 项目验证 28
5.2 小结 29
第6章 结束语 30
第7章 致  谢 32
第8章 参考文献 33


相关论文
本论文在其他专业论文栏目,由论文格式网整理,转载请注明来源www.lwgsw.com,更多论文,请点论文格式范文查看
上一篇:嵌入式FAT12文件系统 下一篇:基于JAVA的进销存物资管理系统
Tags:基于 java 技术 邮件系统 设计 实现 【收藏】 【返回顶部】
会计论文
电子机电论文
金融论文
电气自动化论文
模具设计
化学工程与工艺
机械设计
电子通信论文
英语论文
行政管理论文
物流论文
电子商务论文
法律论文
国际贸易论文
财务管理论文
人力资源论文
市场营销论文
土木工程论文
工商管理论文
工程管理论文
汉语言文学论文
教育管理论文
测控专业论文
交通工程论文
旅游管理论文
新闻专业论文
艺术设计
教育技术学论文
应用物理学论文
轻化工程论文
德语专业论文
给水排水工程
服装设计与工程
食品生物技术
材料科学与工程
电视制片管理
工业工程论文
文化产业管理
包装工程论文
印刷工程论文
信息管理论文
制药工程论文
生物工程论文
电子信息工程
信息计算科学
电气工程论文
通信工程论文
财务会计毕业论文
电子商务毕业论文
现代教育技术
信息管理专业
心理学专业
数学与应用数学
数学教育
护理学毕业论文
其他专业论文
历史学论文
学前教育毕业论文
小学教育毕业论文
教育管理毕业论文
法律专业毕业论文
汉语言文学毕业论文
工商管理毕业论文
人力资源毕业论文
营销专业毕业论文
物流专业毕业论文
计算机论文
最新文章
热门文章
计算机论文
推荐文章

本站部分文章来自网络,如发现侵犯了您的权益,请联系指出,本站及时确认删除 E-mail:349991040@qq.com

论文格式网(www.lwgsw.com--论文格式网拼音首字母组合)提供其他专业论文毕业论文格式,论文格式范文,毕业论文范文

Copyright@ 2010-2018 LWGSW.com 论文格式网 版权所有 蜀ICP备09018832号