TCP实验关于C#的CS编程

TCP实验关于C#的CS编程

ID:38267343

大小:222.12 KB

页数:9页

时间:2019-06-07

TCP实验关于C#的CS编程_第1页
TCP实验关于C#的CS编程_第2页
TCP实验关于C#的CS编程_第3页
TCP实验关于C#的CS编程_第4页
TCP实验关于C#的CS编程_第5页
资源描述:

《TCP实验关于C#的CS编程》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、组C/S模式的编程实例——C#语言编写报告人:实验分组:班级:学号:负责内容:TCPserver1.实验目的利用C#编程,通过TCP的数据连接和传输的方式,编写一个基于TCP的CS模式的简易聊天程序。2.实验思想和方案TCPIP协议栈。TCPIP参考模型分为四个层次:应用层,传输层,网络互连层和主机到网络层。在TCP中常用的类有:TcpListener类,TcpClient类,NetworkStream等。通讯流程图:部分源代码:usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentMode

2、l;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Net;usingSystem.Net.Sockets;usingSystem.Threading;namespaceTCPClient{publicpartialclassForm1:Form{publicSocketnewclient;publicboolConnected;publicThreadmyThread;publicdelegatevoi

3、dMyInvoke(stringstr);publicForm1(){InitializeComponent();}publicvoidConnect(){byte[]data=newbyte[1024];newclient=newSocket(AddressFamily.InterNetwork,SocketType.Stream,ProtocolType.Tcp);stringipadd=serverIP.Text.Trim();intport=Convert.ToInt32(serverPort.Text.Trim());IPEndPointie=newIPEndP

4、oint(IPAddress.Parse(ipadd),port);try{newclient.Connect(ie);connect.Enabled=false;Connected=true;}catch(SocketExceptione){MessageBox.Show("连¢?接¨®服¤t务?器¡Â失º¡ì败㨹"+e.Message);return;}ThreadStartmyThreaddelegate=newThreadStart(ReceiveMsg);myThread=newThread(myThreaddelegate);myThread.Start(

5、);}publicvoidReceiveMsg(){while(true){byte[]data=newbyte[1024];intrecv=newclient.Receive(data);stringstringdata=Encoding.UTF8.GetString(data,0,recv);showMsg(stringdata+"r");//receiveMsg.AppendText(stringdata+"r");}}publicvoidshowMsg(stringmsg){{//在¨²线?程¨¬里¤?以°?安ã2全¨?方¤?式º?调Ì¡Â用®?控?件

6、tif(receiveMsg.InvokeRequired){MyInvoke_myinvoke=newMyInvoke(showMsg);receiveMsg.Invoke(_myinvoke,newobject[]{msg});}else{receiveMsg.AppendText(msg);}}}privatevoidSendMsg_Click(objectsender,EventArgse){intm_length=mymessage.Text.Length;byte[]data=newbyte[m_length];data=Encoding.UTF8.GetBy

7、tes(mymessage.Text);inti=newclient.Send(data);showMsg("我¨°说¦Ì:êo"+mymessage.Text+"r");//receiveMsg.AppendText("我¨°说¦Ì:êo"+mymessage.Text+"r");mymessage.Text="";//newclient.Shutdown(SocketShutdown.Both);}privatevoidconnect_Click(objectsender,EventArgse){Connect

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。