- 1、本文档共9页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
《C#socket传输文件》.doc
? 查看文章 ? c# socket 传输文件
int port = 1234;
int port = 1234;?? ?? ?? IPAddress ip = IPAddress.Parse();?? ?? ?? socket = new Socket(AddressFamily.InterNetwork,SocketType.Stream,ProtocolType.Tcp);?? ?? ?? IPEndPoint iep = new IPEndPoint(ip,port);?? ?? ?? //socket.Blocking = false;?? ?? ?? socket.Bind(iep);?? ?? ?? socket.Listen(10);?? ?? ?? Console.WriteLine(start......);?? ?? ?? try?? ?? ?? {?? ?? ?? ?? for (int i = 0; i 10;i++ )?? ?? ?? ?? {?? ?? ?? ?? ?? ????? ?? ?? ?? }?? ?? ?? }?? ?? ?? catch?? ?? ?? {?? ?? ?? ?? Console.WriteLine(异常!);?? ?? ?? ?? socket.Close();?? ?? ?? }
接收端 private void Receive(Socket socket) { NetworkStream ns = new NetworkStream(socket); FileStream fs = new FileStream(c:\\file.txt, FileMode.OpenOrCreate); bool isRead = true; while (isRead) { ?? ??? int count = ns.Read(this._receiveBuf, 0, this._receiveBuf.Length); ?? ??? int datanum = 0; ?? ??? datanum = BitConverter.ToInt32(this._receiveBuf, 0);?? //从buffer中的前4个字节读出count ?? ??? if (datanum 0) ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??? //确定每次要接受多少字节数 ?? ??? { ?? ?? ?? fs.Write(this._receiveBuf, 4, datanum); ?? ??? } ?? ??? else ?? ?? ?? ?? ?? ?? ?? ?? ?? //如果接受字节数为0 就推出 ?? ??? { ?? ?? ?? isRead = false; ?? ??? } } this.txtFile.Text = 文件传输成功; fs.Close(); } --------------------- 发送端 private void btSend_Click(object sender, System.EventArgs e) { if (this._isConnect) { ?? ??? _ns = _tc.GetStream(); ?? ??? string path = this.txtPath.Text.Trim(); ?? ??? FileStream fs = new FileStream(path, FileMode.Open); ?? ??? int sendCount = 0; ?? ??? byte[] countbuffer = null; ?? ??? byte[] clientbuffer = new byte[1004]; ?? ??? while (sendCount fs.Length _ns.CanWrite) ?? ??? { ?? ?? ?? int count = fs.Read(_sendBuf, 0, _sendBuf.Length);?? //读出要发送的数据 ?? ?? ?? countbuffer = BitConverter.GetBytes(count); ?? ?? ?? countbuffer.CopyTo(clientbuffer,0); ?? ?? ?? _sendBuf.CopyTo(clientbuffer, 4); ?? ?? ?? ????? ?? ?? this._ns.Write(clientbuffer, 0, 4 + count); ??
您可能关注的文档
- 《aro气动隔膜泵》.doc
- 《Array_Transducer_Modeling_Tools》.pdf
- 《Articles on Valve Amplifiers》.pdf
- 《AS3.0 Socket》.docx
- 《AS3.0_Socket编程》.doc
- 《as3_Socket_的例子》.doc
- 《AsiaPacific Regional Trade Agreements》.pdf
- 《ASS- VSU - Requirements to obtain a Shengen Visa (INVITO) (EN)》.doc
- 《Asset Valuation & Allocation Models- Prudential Financial》.pdf
- 《Asset-valuation-debt Chinese 2016》.ppt
文档评论(0)