特级做A爰片毛片免费69,永久免费AV无码不卡在线观看,国产精品无码av地址一,久久无码色综合中文字幕

局域網(wǎng)聊天軟件畢業(yè)設(shè)計.doc

約41頁DOC格式手機打開展開

局域網(wǎng)聊天軟件畢業(yè)設(shè)計,摘 要隨著計算機科學(xué)和internet 的飛速發(fā)展, 網(wǎng)上聊天已成為人們相互交流的一種方式, 與e-mail、電話相比, 聊天服務(wù)更具有實時性和有效性。本論文提出一個運行于.net平臺上的局域網(wǎng)聊天軟件的解決方案。該聊天軟件包括服務(wù)器端和客戶端兩個模塊,客戶端通過服務(wù)器端進行通信。服務(wù)器端模塊主要...
編號:30-206816大小:920.50K
分類: 論文>計算機論文

內(nèi)容介紹

此文檔由會員 zsbhxw 發(fā)布

局域網(wǎng)聊天軟件畢業(yè)設(shè)計


摘  要
 
隨著計算機科學(xué)和Internet 的飛速發(fā)展, 網(wǎng)上聊天已成為人們相互交流的一種方式, 與E-mail、電話相比, 聊天服務(wù)更具有實時性和有效性。
本論文提出一個運行于.NET平臺上的局域網(wǎng)聊天軟件的解決方案。該聊天軟件包括服務(wù)器端和客戶端兩個模塊,客戶端通過服務(wù)器端進行通信。服務(wù)器端模塊主要實現(xiàn)了服務(wù)器的配置和數(shù)據(jù)的傳遞;客戶端模塊主要實現(xiàn)了用戶注冊、登錄、文字聊天等功能。該軟件采用多線程技術(shù)支持多用戶操作,并采用相關(guān)技術(shù)進行了優(yōu)化,加快了文字傳遞速度。
    該軟件能夠幫助企業(yè)在局域網(wǎng)內(nèi)搭建起自己的聊天系統(tǒng),避免企業(yè)內(nèi)部員工使用類似QQ等軟件泄露內(nèi)部信息,但是該軟件只實現(xiàn)了聊天的基本功能,還有很多不足之處需要改進。
 
【關(guān)鍵字】:局域網(wǎng),聊天軟件,.net
 
ABSTRACT
Along with the high-speed development of the computer science and Internet, chatting on line has been an important method in our communication. Comparing with E-mail and telephone, the chat-line service is more real-time and effective.
This thesis proposes a solution of a LAN chatting software based on C# language, which is operated on the .NET platform. This chatting software includes two modules: the server and the client, which can communicate with each other. The server module mainly completes the sever device’s configuration. The client module mainly completes the users’ login, registration, instant messaging and so on. This software uses the multithreading technical support multi-users’ operation, and uses the correlation technique to carry on the optimization to speed up the writing transmission speed.
   This software can help the company to build their own chatting system in the local area network, and it also can avoid the staff of the company disclosing the insider information by using the other software such as QQ, but this software has only completed the basic function as a chatting system, so it need much more improvement.
 
【Key words】:LAN, chatting software, .net
 
目 錄
前 言 - 5 -
第1章 概述 - 6 -
1.1 課題背景及意義 - 6 -
1.2 課題現(xiàn)狀 - 7 -
1.3 課題內(nèi)容與目標(biāo) - 7 -
第2章 系統(tǒng)開發(fā)環(huán)境和關(guān)鍵技術(shù) - 8 -
2.1 開發(fā)環(huán)境 - 8 -
2.2 關(guān)鍵技術(shù) - 8 -
2.2.1 .NET Framework和C# - 8 -
2.2.2 SQL Server 2000 - 9 -
2.2.3 WINDOWS SOCKETS網(wǎng)絡(luò)編程接口 - 10 -
2.2.4 多線程開發(fā)技術(shù) - 11 -
2.2.5 TCP/IP協(xié)議、UDP協(xié)議 - 11 -
2.2.6 Client/Server結(jié)構(gòu)(客戶機/服務(wù)器模式) - 13 -
第3章 系統(tǒng)分析與設(shè)計 - 14 -
3.1 系統(tǒng)分析 - 14 -
3.1.1 系統(tǒng)需求 - 14 -
3.1.2 需求分析 - 15 -
3.2 系統(tǒng)設(shè)計 - 17 -
3.2.1 設(shè)計原則 - 17 -
3.2.2 架構(gòu)設(shè)計 - 18 -
3.2.3 工作流程 - 21 -
3.2.4 功能設(shè)計 - 21 -
3.2.5 數(shù)據(jù)庫設(shè)計 - 22 -
第4章 系統(tǒng)實現(xiàn) - 26 -
4.1 服務(wù)器端設(shè)計實現(xiàn) - 26 -
4.1.1 服務(wù)器端工作流程圖 - 26 -
4.1.2 服務(wù)器主界面 - 27 -
4.1.3 服務(wù)器的配置 - 27 -
4.1.4 服務(wù)器的開啟 - 28 -
4.2 客戶端設(shè)計實現(xiàn) - 29 -
4.2.1 客戶端工作流程圖 - 29 -
4.2.2 客戶端登陸主界面 - 30 -
4.2.3 注冊 - 30 -
4.2.4 登陸 - 31 -
4.2.5 文字傳送 - 32 -
4.2.6 添加好友 - 33 -
4.3 系統(tǒng)功能特點 - 33 -
第5章 難點及對策 - 34 -
6.1 在C#中處理Socket網(wǎng)絡(luò)異常斷開的方法 - 34 -
6.2 .NET中多線程的同步資源訪問 - 35 -
6.3 用C#操縱XML文檔 - 36 -
總結(jié)及展望 - 37 -
致謝 - 39 -
參考文獻 - 40 -