国产精品婷婷久久久久久,国产精品美女久久久浪潮av,草草国产,人妻精品久久无码专区精东影业

郵件收發(fā)系統(tǒng)的設計與實現.rar

RAR格式版權申訴手機打開展開

郵件收發(fā)系統(tǒng)的設計與實現,1.2萬字34頁包括開題和任務書摘要網絡技術漸漸成熟,電子郵件技術也越來越成熟?,F今,電子郵件(e-mail)是internet上使用最為廣泛的一種服務。本論文設計并實現了一個電子郵件收發(fā)系統(tǒng),該系統(tǒng)可以使用戶更加方便的管理電子郵件,用戶不用登陸網頁,就可以收取和發(fā)送電子郵件。該系統(tǒng)主要分為三部...
編號:88-34724大小:270.80K
分類: 論文>計算機論文

該文檔為壓縮文件,包含的文件列表如下:

內容介紹

原文檔由會員 usactu 發(fā)布

郵件收發(fā)系統(tǒng)的設計與實現
1.2萬字 34頁
包括開題和任務書


摘 要

網絡技術漸漸成熟,電子郵件技術也越來越成熟?,F今,電子郵件(E-mail)是Internet上使用最為廣泛的一種服務。
本論文設計并實現了一個電子郵件收發(fā)系統(tǒng),該系統(tǒng)可以使用戶更加方便的管理電子郵件,用戶不用登陸網頁,就可以收取和發(fā)送電子郵件。該系統(tǒng)主要分為三部分:用戶設置、發(fā)送郵件和收取郵件。它采用C/S設計模式,服務器端是SMTP服務器和POP服務器,客戶端是郵件收發(fā)程序。用戶設置部分是注冊用戶,把用戶信息存儲起來。發(fā)送郵件部分是基于SMTP(Simple Mail Transfer Protocol,簡單郵件傳輸協議)與SMTP服務器進行對話。收取郵件部分是基于POP3(Post Office Protocol version 3,郵局協議)與POP服務器進行對話。電子郵件收發(fā)信息不只支持英文,而且支持中文。由于RFC882限制電子郵件的文本只能采用US ASCⅡ字符集,所以本系統(tǒng)采用MIME編碼解碼,擴展信件規(guī)范。最后,對該系統(tǒng)進行了測試。
論文分別從系統(tǒng)涉及的基礎知識、系統(tǒng)的設計與實現和系統(tǒng)實現采用的關鍵技術進行詳細說明。論文最后還對全文作出了總結。

關鍵詞:信體結構,SMTP,POP3,MIME, 編碼,解碼

A Design and Implement of Simple Mail System
Abstract
Network technology is becoming more and more nature, and E-mail technology is developed fast. Nowadays, E-mail has become a most used service on Internet.
The dissertation designs and implements a Simple Mail System. The users can easily manage the E-mail by using this system. They can check and send E-mail without landing website. The system includes three main modules: User setting, E-mail sending, E-mail checking. It uses a C/S architecture. The server is a SMTP server or a POP server, and the client is a sending and checking E-mail tool. The part of User setting is used to register users, it storage the information in the local disk. The part of E-mail sending is communicating with the SMTP server by Simple Mail Transfer Protocol and the part of E-mail checking is communicating with the POP server by Post Office Protocol. The Simple Mail System support not only English, but also Chinese. Limited by RFC822, the text of E-mail can only use ASCⅡ character set. Thus, this system makes use of MIME to encoding and decoding, and expanding mail norms. In the end, I make a testing for the Simple Mail System.
The dissertation introduces the system from the following aspects: the purpose of the design, the design and the implement of the system, the key technologies, and so on. Finally, it makes a summary of the dissertation.

Key Words: the structure of mail body, SMTP, POP3, MIME, Encoding, Decoding.

目錄
1 緒論 1
1.1 課題的背景和來源 1
1.2 設計現狀與發(fā)展情況 2
1.3 論文研究內容及組織形式 2
2 E-MAIL基礎 3
2.1 信件結構 3
2.1.1 RFC822信件的格式與內容 3
2.1.1.1 信頭 4
2.1.1.2 信件體 5
2.2 SMTP 與 POP3 5
2.2.1 SMTP 介紹 5
2.2.2 POP3介紹 7
2.3 MIME編碼解碼 8
2.3.1 RFC的局限 8
2.3.2 Uuencode編碼與解碼 9
2.3.3 MIME及其編碼 9
2.3.4 MIME媒體類型 9
2.4 小結 10
3 系統(tǒng)的設計與實現 11
3.1 用戶設置功能 11
3.1.1 設置用戶信息 11
3.1.2 測試連接 11
3.2 發(fā)送郵件功能的設計與實現 12
3.2.1 連接服務器 13
3.2.2 發(fā)送命令及接受響應信息 13
3.2.3 CSMTP類的設計與實現 13
3.2.3.1連接服務器Connect() 13
3.2.3.2發(fā)送郵件 15
3.3 收取郵件功能的設計與實現 16
3.3.1 連接POP3服務器 17
3.3.2 提取郵件內容 18
3.4 系統(tǒng)測試 18
3.4.1 用戶設置功能測試 18
3.4.2 發(fā)送郵件功能測試 19
3.4.3 收取郵件功能測試 20
3.5 小結 21
4 系統(tǒng)實現所用到的關鍵技術 22
4.1 BASE64編碼 22
4.2 BASE64解碼 23
4.3 QUOTED-PRINTABLE編碼 23
4.4 編碼解碼在程序中的應用 24
4.5 小結 26
5 結束語 27
5.1 總結 27
5.2 本階段工作總結與下階段工作展望 27
參考文獻 28
致謝 29



參考文獻
[1] 尤曉東. Internet應用基礎教程[M].北京:清華大學出版社
[2]柳千千.新手觸網之電子郵件[EB].
[3] Douglas E.Comer,David L.Stevens著. 趙剛,蔣慧,林瑤 等譯.用TCP/IP進行網際互聯[M].北京:電子工業(yè)出版社
[4] RFC821, SIMPLE MAIL TRANSFER PROTOCOL[S].
[5] RFC1939, Post Office Protocol - Version 3[S].
[6] 王寒暉. 網絡協議規(guī)范大全[EB]