資源簡介
實現一個類似QQ的網絡聊天軟件的功能;服務端采用WebServices提供技術支持,客戶端采用Windows窗體,為用戶提供網絡聊天的簡單功能。
采用C/S結構,服務端采用WebServices作為服務的技術支持,客戶端采用Windows Form實現。
開發工具選擇Visual Studio 2010旗艦版,數據庫使用SQL Server 2008;服務端采用兩層結構,即DAL和BLL,數據訪問層使用LINQ to SQL類來實現,大大簡化該層的設計工作量;業務邏輯層使用LINQ來操作數據對象;

代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Linq;
using?System.Text;
namespace?ClientApp
{
????///?
????///?添加新類執行字符串和二進制數組轉換功能的靜態方法類
????///?
????class?ConvertStringAndBytes
????{
????????//將字節數組轉換為16進制字符串
????????public?static?string?ConvertBytesToString(byte[]?bs)
????????{
????????????string?str?=?string.Empty;
????????????if?(bs?!=?null)
????????????{
????????????????StringBuilder?sb?=?new?StringBuilder();
????????????????for?(int?i?=?0;?i?????????????????{
????????????????????sb.Append(bs[i].ToString(“X2“));
????????????????}
????????????????str?=?sb.ToString();
????????????}
????????????return?str;
????????}
????????//將16進制符號轉換為為字節數組
????????public?static?byte[]?ConvertStringToBytes(string?str)
????????{?
????????????byte[]?bs=new?byte[str.Length/2];
????????????for?(int?i?=?0;?i?????????????{
????????????????bs[i]?=?Convert.ToByte(str.Substring(i*22)16);
????????????}
????????????return?bs;????????
????????}
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????1249411??2014-04-14?21:56??基于Web服務簡易網絡聊天工具的設計與實現\01111139_朱向洋_課程設計.pdf
?????文件????????860??2014-04-12?19:20??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\app.config
?????文件????????860??2014-04-12?19:20??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\bin\Debug\ClientApp.vshost.exe.config
?????文件????????490??2010-03-17?22:39??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\bin\Debug\ClientApp.vshost.exe.manifest
?????文件?????926208??2014-04-14?00:33??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\bin\Debug\iFriend.exe
?????文件????????860??2014-04-12?19:20??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\bin\Debug\iFriend.exe.config
?????文件?????130560??2014-04-14?00:33??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\bin\Debug\iFriend.pdb
?????文件??????11600??2014-04-14?00:33??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\bin\Debug\iFriend.vshost.exe
?????文件????????860??2014-04-12?19:20??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\bin\Debug\iFriend.vshost.exe.config
?????文件????????490??2010-03-17?22:39??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\bin\Debug\iFriend.vshost.exe.manifest
?????文件???????7893??2014-04-13?21:56??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\ClientApp.csproj
?????文件???????1159??2014-04-09?22:29??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\ConvertStringAndBytes.cs
?????文件???????1607??2014-04-13?21:53??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormCreateGroup.cs
?????文件???????4320??2014-04-13?21:53??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormCreateGroup.Designer.cs
?????文件???????5817??2014-04-13?21:53??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormCreateGroup.resx
?????文件???????2182??2014-04-13?23:51??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormFindFriend.cs
?????文件???????3343??2014-04-13?23:51??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormFindFriend.Designer.cs
?????文件???????5817??2014-04-13?23:51??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormFindFriend.resx
?????文件???????1575??2014-04-13?21:53??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormJoinGroup.cs
?????文件???????3430??2014-04-13?21:53??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormJoinGroup.Designer.cs
?????文件???????5817??2014-04-13?21:53??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormJoinGroup.resx
?????文件???????2696??2014-04-13?21:54??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormLogin.cs
?????文件???????6788??2014-04-13?21:54??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormLogin.Designer.cs
?????文件??????20617??2014-04-13?21:54??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormLogin.resx
?????文件??????20373??2014-04-14?00:32??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormMessage.cs
?????文件??????16873??2014-04-13?23:18??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormMessage.Designer.cs
?????文件??????20990??2014-04-13?23:18??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormMessage.resx
?????文件???????2244??2014-04-13?21:53??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormRegister.cs
?????文件???????6303??2014-04-13?21:53??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormRegister.Designer.cs
?????文件???????5817??2014-04-13?21:53??基于Web服務簡易網絡聊天工具的設計與實現\WebServiceApp\ClientApp\FormRegister.resx
............此處省略163個文件信息
- 上一篇:Swing圖形程序—同學通訊錄
- 下一篇:progress SQL 函數
評論
共有 條評論