• <ul id="ayckg"><pre id="ayckg"></pre></ul>
    <strike id="ayckg"></strike>
        論文格式
        電氣工程 會計論文 金融論文 國際貿易 財務管理 人力資源 輕化工程 德語論文 工程管理 文化產業管理 信息計算科學 電氣自動化 歷史論文
        機械設計 電子通信 英語論文 物流論文 電子商務 法律論文 工商管理 旅游管理 市場營銷 電視制片管理 材料科學工程 漢語言文學 免費獲取
        制藥工程 生物工程 包裝工程 模具設計 測控專業 工業工程 教育管理 行政管理 應用物理 電子信息工程 服裝設計工程 教育技術學 論文降重
        通信工程 電子機電 印刷工程 土木工程 交通工程 食品科學 藝術設計 新聞專業 信息管理 給水排水工程 化學工程工藝 推廣賺積分 付款方式
        • 首頁 |
        • 畢業論文 |
        • 論文格式 |
        • 個人簡歷 |
        • 工作總結 |
        • 入黨申請書 |
        • 求職信 |
        • 入團申請書 |
        • 工作計劃 |
        • 免費論文 |
        • 合作期刊 |
        • 論文同學網 |
        搜索 高級搜索

        當前位置:論文格式網 -> 畢業論文 -> 計算機論文
        畢業論文標題:

        簡單郵件收發系統的設計與實現

         本文ID:LWGSW13559 價格:收費積分/100
        掃一掃 掃一掃
        本站會員可自行下載:下載地址 簡單郵件收發系統的設計與實現 (收費:1000 積分)  

        論文字數:12272,頁數:34  有開題報告,任務書

        摘    要

         網絡技術漸漸成熟,電子郵件技術也越來越成熟。現今,電子郵件(E-mail)是Internet上使用最為廣泛的一種服務。
         本論文設計并實現了一個電子郵件收發系統,該系統可以使用戶更加方便的管理電子郵件,用戶不用登陸網頁,就可以收取和發送電子郵件。該系統主要分為三部分:用戶設置、發送郵件和收取郵件。它采用C/S設計模式,服務器端是SMTP服務器和POP服務器,客戶端是郵件收發程序。用戶設置部分是注冊用戶,把用戶信息存儲起來。發送郵件部分是基于SMTP(Simple Mail Transfer Protocol,簡單郵件傳輸協議)與SMTP服務器進行對話。收取郵件部分是基于POP3(Post Office Protocol version 3,郵局協議)與POP服務器進行對話。電子郵件收發信息不只支持英文,而且支持中文。由于RFC882限制電子郵件的文本只能采用US ASCⅡ字符集,所以本系統采用MIME編碼解碼,擴展信件規范。最后,對該系統進行了測試。
         論文分別從系統涉及的基礎知識、系統的設計與實現和系統實現采用的關鍵技術進行詳細說明。論文最后還對全文作出了總結。
         
        關鍵詞:信體結構,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   設計現狀與發展情況 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 系統的設計與實現 11
        3.1 用戶設置功能 11
        3.1.1 設置用戶信息 11
        3.1.2 測試連接 11
        3.2 發送郵件功能的設計與實現 12
        3.2.1 連接服務器 13
        3.2.2 發送命令及接受響應信息 13
        3.2.3 CSMTP類的設計與實現 13
        3.2.3.1連接服務器Connect() 13
        3.2.3.2發送郵件 15
        3.3 收取郵件功能的設計與實現 16
        3.3.1 連接POP3服務器 17
        3.3.2 提取郵件內容 18
        3.4 系統測試 18
        3.4.1 用戶設置功能測試 18
        3.4.2 發送郵件功能測試 19
        3.4.3 收取郵件功能測試 20
        3.5 小結 21
        4 系統實現所用到的關鍵技術 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


        相關論文
        本論文在計算機論文欄目,由論文格式網整理,轉載請注明來源www.donglienglish.cn,更多論文,請點論文格式范文查看
        上一篇:IP地址管理系統的設計與實現 下一篇:一種基于DCT域圖像數字水印算法的..
        Tags:簡單 郵件 收發 系統 設計 實現 【收藏】 【返回頂部】
        最新文章
        熱門文章
        計算機論文
        推薦文章

        本站部分文章來自網絡,如發現侵犯了您的權益,請聯系指出,本站及時確認刪除 E-mail:349991040@qq.com

        論文格式網(www.donglienglish.cn--論文格式網拼音首字母組合)提供計算機論文畢業論文格式,論文格式范文,畢業論文范文

        Copyright@ 2010-2018 LWGSW.com 論文格式網 版權所有 蜀ICP備09018832號

        感谢您访问我们的网站,您可能还对以下资源感兴趣:

        论文格式网:毕业论文格式范文
        <th id="umuwq"><s id="umuwq"></s></th><samp id="umuwq"></samp><strike id="umuwq"></strike>
      • <samp id="umuwq"><pre id="umuwq"></pre></samp>
        <kbd id="umuwq"><pre id="umuwq"></pre></kbd>
      • <samp id="umuwq"><tbody id="umuwq"></tbody></samp>