郵件服務(wù)器系統(tǒng)設(shè)計(jì).doc
約43頁DOC格式手機(jī)打開展開
郵件服務(wù)器系統(tǒng)設(shè)計(jì),2.7萬字 有源代碼摘 要 子郵件服務(wù)作為internet上應(yīng)用最多和最廣的服務(wù)項(xiàng)目得到了非常廣泛的應(yīng)用,在網(wǎng)絡(luò)應(yīng)用中也起到非常重要的作用。如同其他的網(wǎng)絡(luò)服務(wù),電子郵件系統(tǒng)也有其使用的傳輸協(xié)議,包括smtp(simple mail transfer protocol,簡單郵件傳輸協(xié)議)、pop(post office ...
內(nèi)容介紹
此文檔由會員 space 發(fā)布
2.7萬字 有源代碼
摘 要
子郵件服務(wù)作為Internet上應(yīng)用最多和最廣的服務(wù)項(xiàng)目得到了非常廣泛的應(yīng)用,在網(wǎng)絡(luò)應(yīng)用中也起到非常重要的作用。如同其他的網(wǎng)絡(luò)服務(wù),電子郵件系統(tǒng)也有其使用的傳輸協(xié)議,包括SMTP(Simple Mail Transfer Protocol,簡單郵件傳輸協(xié)議)、POP(Post Office Protocol,郵局協(xié)議)和IMAP(等,這些協(xié)議應(yīng)用于電子郵件的發(fā)送和接收。一些郵件處理軟件如Outlook Express等就是按照SMTP和POP3 協(xié)議結(jié)合Windows Sockets套接字進(jìn)行設(shè)計(jì)來收發(fā)郵件的。本文以SMTP協(xié)議為研究對象,在Java編程環(huán)境下按照SMTP協(xié)議和POP3協(xié)議通過套接字發(fā)送SMTP命令和POP3命令,接收并處理郵件服務(wù)器的反饋信息,從而實(shí)現(xiàn)對電子郵件的發(fā)送和接收。
本文以郵件服務(wù)器為研究對象,在Java編程環(huán)境下按照SMTP協(xié)議和POP3協(xié)議通過套接字發(fā)送SMTP命令和POP3命令,接收并處理郵件服務(wù)器的反饋信息,從而實(shí)現(xiàn)對電子郵件的發(fā)送和接收。本文做了以下工作:
介紹郵件服務(wù)器的工作原理;
通過SMTP協(xié)議發(fā)送郵件;
通過POP3協(xié)議接收郵件;
用戶名和密碼的驗(yàn)證;
郵件服務(wù)器的檢驗(yàn);
關(guān) 鍵 字 郵件服務(wù)器;SMTP協(xié)議;POP3協(xié)議;
Abstract
This article take the Mail Server as the research object, transmits the SMTP order and the POP3 order under the Java programming environment according to the SMTP agreement and the POP3 agreement through the sleeve joint character, the receive and the processing server feedback information, thus realizes to the email transmission and the receive. This article has done the below work:
(1) introduces the server the principle of work;
(2) Through SMTP agreement transmission mail;
(3) Through POP3 agreements receive mail;
(4) User name and password confirmation;
(5) Server examination;
KeyWords
Mail server; SMTP agreement;POP3 agreement;
目錄
1、前言
2、基于Eclipse開發(fā)的java語言編程技術(shù)
3、服務(wù)器配置
4、系統(tǒng)框架的設(shè)計(jì)與實(shí)現(xiàn)
4.1 系統(tǒng)設(shè)計(jì)思想
4.2 郵件發(fā)送服務(wù)器的設(shè)計(jì)
4.3 郵件接收服務(wù)器的設(shè)計(jì)
4.3.1 郵件接收原理
4.3.2 郵件接收的實(shí)現(xiàn)
4.3.3 郵件接收的部分代碼
4.4用戶和用戶名的驗(yàn)證
結(jié)論
致謝
參考文獻(xiàn)
附錄
摘 要
子郵件服務(wù)作為Internet上應(yīng)用最多和最廣的服務(wù)項(xiàng)目得到了非常廣泛的應(yīng)用,在網(wǎng)絡(luò)應(yīng)用中也起到非常重要的作用。如同其他的網(wǎng)絡(luò)服務(wù),電子郵件系統(tǒng)也有其使用的傳輸協(xié)議,包括SMTP(Simple Mail Transfer Protocol,簡單郵件傳輸協(xié)議)、POP(Post Office Protocol,郵局協(xié)議)和IMAP(等,這些協(xié)議應(yīng)用于電子郵件的發(fā)送和接收。一些郵件處理軟件如Outlook Express等就是按照SMTP和POP3 協(xié)議結(jié)合Windows Sockets套接字進(jìn)行設(shè)計(jì)來收發(fā)郵件的。本文以SMTP協(xié)議為研究對象,在Java編程環(huán)境下按照SMTP協(xié)議和POP3協(xié)議通過套接字發(fā)送SMTP命令和POP3命令,接收并處理郵件服務(wù)器的反饋信息,從而實(shí)現(xiàn)對電子郵件的發(fā)送和接收。
本文以郵件服務(wù)器為研究對象,在Java編程環(huán)境下按照SMTP協(xié)議和POP3協(xié)議通過套接字發(fā)送SMTP命令和POP3命令,接收并處理郵件服務(wù)器的反饋信息,從而實(shí)現(xiàn)對電子郵件的發(fā)送和接收。本文做了以下工作:
介紹郵件服務(wù)器的工作原理;
通過SMTP協(xié)議發(fā)送郵件;
通過POP3協(xié)議接收郵件;
用戶名和密碼的驗(yàn)證;
郵件服務(wù)器的檢驗(yàn);
關(guān) 鍵 字 郵件服務(wù)器;SMTP協(xié)議;POP3協(xié)議;
Abstract
This article take the Mail Server as the research object, transmits the SMTP order and the POP3 order under the Java programming environment according to the SMTP agreement and the POP3 agreement through the sleeve joint character, the receive and the processing server feedback information, thus realizes to the email transmission and the receive. This article has done the below work:
(1) introduces the server the principle of work;
(2) Through SMTP agreement transmission mail;
(3) Through POP3 agreements receive mail;
(4) User name and password confirmation;
(5) Server examination;
KeyWords
Mail server; SMTP agreement;POP3 agreement;
目錄
1、前言
2、基于Eclipse開發(fā)的java語言編程技術(shù)
3、服務(wù)器配置
4、系統(tǒng)框架的設(shè)計(jì)與實(shí)現(xiàn)
4.1 系統(tǒng)設(shè)計(jì)思想
4.2 郵件發(fā)送服務(wù)器的設(shè)計(jì)
4.3 郵件接收服務(wù)器的設(shè)計(jì)
4.3.1 郵件接收原理
4.3.2 郵件接收的實(shí)現(xiàn)
4.3.3 郵件接收的部分代碼
4.4用戶和用戶名的驗(yàn)證
結(jié)論
致謝
參考文獻(xiàn)
附錄