主页 > 编程资料 > C# >
发布时间:2015-09-26 作者:网络 阅读:202次
最近一个项目要用到点对点文件传输,俺就到处找资料写程序,最后终于完成了,为了让别人少走些弯路,俺决定将俺程序中最重要的部分贡献出来,希望对大家有所帮助。
俺的程序分三部分,包括发送部分、接受部分和一个两者共享的通讯基类,这个基类才是俺心血的结晶:)
 
一、通讯基类
using System;
using System.Net.Sockets;
using System.Net ;
using System.IO ;
using System.Windows.Forms;
using System.Text;
 
namespace BaseClass
{
     ///
     /// 传送信息的格式为 给定长度的命令部分+给定长度的命令注释部分+可变长度的长度信息+可变长度的信息部分
     ///
     public class CommunClass
     {
         public CommunClass()
         {
              //
              // TODO: 在此处添加构造函数逻辑
              //
         }
         ///
         /// 命令部分的长度
         ///
          private static readonly int CMDLEN = 50 ;
         ///
         /// 命令注释部分的长度
         ///
          private static readonly int DESCLEN = 100 ;
         ///
         /// 可变长度的长度信息部分所占的字节数
         ///
          private static readonly int DYNAMICLENGTHLEN = 10 ;
         ///
         /// 每次处理可变信息部分的长度
         ///
          private static readonly int DEALLEN = 1024 ;            
         ///
         /// /应答的最大长度
         ///
          private static readonly int RESPONLEN = 20 ;
         ///
         /// 用于填充命令或注释不足长度部分的字符
         ///    
          private static readonly char FILLCHAR = '^' ;
 
         ///
         /// 成功发送一部分数据后的回调方法(也可以认为是触发的事件,但严格来说还不是)
         ///
          public delegate void OnSend(int iTotal,int iSending) ;
 
         ///
         /// 根据给定的服务器和端口号建立连接
         ///
         /// 服务器名
         /// 端口号
         ///
         public static Socket ConnectToServer(string strHost,int iPort)
         {            
              try
              {
                   IPAddress ipAddress = Dns.Resolve(strHost).AddressList[0];
                   IPEndPoint ipPoint = new IPEndPoint(ipAddress,iPort) ;
 
                   Socket s = new Socket(AddressFamily.InterNetwork,SocketType.Stream,ProtocolType.Tcp) ;
                   s.Connect(ipPoint) ;
                   return s ;
              }
              catch (Exception e)
              {
                   throw (new Exception("建立到服务器的连接出错" + e.Message)) ;
              }
         }
         ///
         /// 将文本写到Socket中
         ///
         /// 要发送信息的Socket
         /// 要发送的信息
         /// 是否成功
         public static bool WriteTextToSocket(Socket s,string strInfo)
         {
              byte [] buf = Encoding.UTF8.GetBytes(strInfo) ;
              try
              {
                   s.Send(buf,0,buf.Length,SocketFlags.None) ;
                   return true ;
              }
              catch(Exception err)
              {
                   MessageBox.Show("发送文本失败!"+err.Message) ;
                   return false ;
              }
         }
         ///
         /// 将命令文本写到Socket中
         ///
         /// 要发送命令文本的Socket
         /// 要发送的命令文本
         /// 是否成功
         public static bool WriteCommandToSocket(Socket s,string strCmd)
         {
              if (strCmd == "")
                   strCmd = "NOP" ;
              strCmd = strCmd.PadRight(CMDLEN,FILLCHAR) ;
              return WriteTextToSocket(s,strCmd) ;         
         }
         ///
         /// 将命令注释写到Socket中
         ///
         /// 要发送命令注释的Socket
         /// 要发送的命令注释
         /// 是否成功
         public static bool WriteCommandDescToSocket(Socket s,string strDesc)
         {
              if (strDesc == "")
                   strDesc = "0" ;
              strDesc = strDesc.PadRight(DESCLEN,FILLCHAR) ;
              return WriteTextToSocket(s,strDesc) ;             
         }
         ///
         /// 发送可变信息的字节数
         ///
         /// 要发送字节数的Socket
         /// 字节数
         /// 是否成功
         public static bool WriteDynamicLenToSocket(Socket s,int iLen)
         {            
              string strLen = iLen.ToString().PadRight(DYNAMICLENGTHLEN,FILLCHAR) ;
              return WriteTextToSocket(s,strLen) ;         
         }
         ///
         /// 将缓存的指定部分发送到Socket
         ///
         /// 要发送缓存的Socket
         /// 要发送的缓存
         /// 要发送缓存的起始位置
         /// 要发送缓存的字节数
         /// 每次发送的字节说
         /// 每次发送成功后的回调函数
         /// 是否发送成功
         public static bool WriteBufToSocket(Socket s,byte [] buf,int iStart,int iCount,int iBlock,OnSend SendSuccess)
         {   
              int iSended = 0 ;
              int iSending = 0 ;
              while(iSended
              {
                   if (iSended + iBlock <= iCount)
                        iSending = iBlock ;
                   else
                        iSending = iCount - iSended ;
                   s.Send(buf,iStart+iSended,iSending,SocketFlags.None) ;                     
                   iSended += iSending ;
                   if (ReadResponsionFromSocket(s)=="OK")
                       if (SendSuccess != null)
                        SendSuccess(iCount,iSended) ;
                   else
                       return false;
              }
             return true ;                      
         }
         ///
         /// 将长度不固定文本发送到socket
         ///
         /// 要发送文本的Socket
         /// 要发送的文本
         /// 成功发送一部分文本后的回调函数
         /// 得到文本长度的回调函数
         ///
         public static bool WriteDynamicTextToSocket(Socket s,string strText,
              OnSend OnSendText)
         {
              byte [] buf = Encoding.UTF8.GetBytes(strText) ;
             
              int iLen = buf.Length ;
              try
              {
                   WriteDynamicLenToSocket(s,iLen) ;
                   return WriteBufToSocket(s,buf,0,iLen,DEALLEN,OnSendText) ;
              }
              catch(Exception err)
              {
                   MessageBox.Show("发送文本失败!"+err.Message) ;
                   return false ;
              }
         }
         ///
         /// 将文件写到Socket
         ///
         /// 要发送文件的Socket
         /// 要发送的文件
         /// 是否成功
         public static bool WriteFileToSocket(Socket s,string strFile,
              OnSend OnSendFile)
         {
              FileStream fs = new FileStream(strFile,FileMode.Open,FileAccess.Read,FileShare.Read) ;
              int iLen = (int)fs.Length ;
              WriteDynamicLenToSocket(s,iLen) ;
              byte [] buf = new byte[iLen] ;
              try
              {
                   fs.Read(buf,0,iLen) ;
                   return WriteBufToSocket(s,buf,0,iLen,DEALLEN,OnSendFile) ;
              }
              catch(Exception err)
              {
                   MessageBox.Show("发送文件失败!"+err.Message) ;
                   return false ;
              }
              finally
              {
                   fs.Close() ;
              }             
         }
         ///
         /// 对方对自己消息的简单回应
         ///
         ///
         ///
         public static string ReadResponsionFromSocket( Socket s)
         {
              byte [] bufCmd = new byte[RESPONLEN] ;
              int iCount = s.Receive(bufCmd) ;
              string strRespon = Encoding.UTF8.GetString(bufCmd,0,iCount) ;
              return strRespon ;
         }
         ///
         /// 从Socket读取命令
         ///
         /// 要读取命令的Socket
         /// 读取的命令
         public static string ReadCommandFromSocket( Socket s)
         {                 
              byte [] bufCmd = new byte[CMDLEN] ;
              int iCount = s.Receive(bufCmd,0,CMDLEN,SocketFlags.Partial) ;
              string strCommand = Encoding.UTF8.GetString(bufCmd,0,CMDLEN) ;
              return strCommand =  strCommand.TrimEnd(FILLCHAR) ;
         }
         ///
         /// 读取命令注释
         ///
         /// 要读取命令注释的Socket
         /// 读取的命令注释
         public static string ReadCommandDescFromSocket( Socket s)
         {                 
              byte [] bufCmd = new byte[DESCLEN] ;
              int iCount = s.Receive(bufCmd,0,DESCLEN,SocketFlags.Partial) ;
              string strCommand = Encoding.UTF8.GetString(bufCmd,0,DESCLEN) ;
              return strCommand =  strCommand.TrimEnd(FILLCHAR) ;
         }
         ///
         /// 读取可变部分的长度
         ///
         /// 要读取可变部分长度的Socket
         /// 读取的可变部分的长度
         public static int ReadDynamicLenFromSocket( Socket s)
         {                 
              byte [] bufCmd = new byte[DYNAMICLENGTHLEN] ;
              int iCount = s.Receive(bufCmd,0,DYNAMICLENGTHLEN,SocketFlags.Partial) ;
              string strCommand = Encoding.UTF8.GetString(bufCmd,0,DYNAMICLENGTHLEN) ;
              return int.Parse(strCommand.TrimEnd(FILLCHAR)) ;
         }
         ///
         /// 读取文本形式的可变信息
         ///
         /// 要读取可变信息的Socket
         /// 读取的可变信息
         public static string ReadDynamicTextFromSocket( Socket s)
         {            
              int iLen =  ReadDynamicLenFromSocket(s) ;
 
              byte [] buf = new byte[iLen] ;
              string strInfo = "" ;
 
              int iReceiveded = 0 ;
              int iReceiveing = 0 ;
              while(iReceiveded
              {
                   if (iReceiveded + DEALLEN <= iLen)
                        iReceiveing = DEALLEN ;
                   else
                        iReceiveing = iLen - iReceiveded ;                   
                   s.Receive(buf,iReceiveded,iReceiveing,SocketFlags.None) ;    
                   CommunClass.WriteTextToSocket(s,"OK") ;
                   iReceiveded+= iReceiveing ;
              }
 
              strInfo = Encoding.UTF8.GetString(buf,0,iLen) ;
             
              return strInfo ;
         }
         ///
         /// 读取文件形式的可变信息
         ///
         /// 要读取可变信息的Socket
         /// 读出后的文件保存位置
         /// 是否读取成功
         public static bool ReadDynamicFileFromSocket( Socket s,string strFile)
         {            
              int iLen =  ReadDynamicLenFromSocket(s) ;
              byte [] buf = new byte[iLen] ;
              FileStream fs = new FileStream(strFile,FileMode.Create,FileAccess.Write) ;
             
              try
              {
                   int iReceiveded = 0 ;
                   int iReceiveing = 0 ;
                   while(iReceiveded
                   {
                       if (iReceiveded + DEALLEN <= iLen)
                            iReceiveing = DEALLEN ;
                       else
                            iReceiveing = iLen - iReceiveded ;   , ;                
                        s.Receive(buf,iReceiveded,iReceiveing,SocketFlags.None) ;    
                        CommunClass.WriteTextToSocket(s,"OK") ;
                        iReceiveded+= iReceiveing ;
                   }
                   fs.Write(buf,0,iLen) ;
                   return true ;
              }
              catch(Exception err)
              {
                   MessageBox.Show("接收文件失败"+err.Message) ;
                   return false ;
              }
              finally
              {
                   fs.Close() ;
              }             
         }
     }//end class
}//end namespace
上面是俺的通讯基础类,有了这个类,再进行发送接受还不是小菜一碟吗?
posted on 2004年08月06日 3:00 PM
<> <>
关键字词: