欢迎来到天天文库
浏览记录
ID:25956092
大小:172.00 KB
页数:28页
时间:2018-11-23
《网络编程-tcp同步编程》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、贵州大学实验报告学院:计算机学院专业:软件工程班级:软件123班姓名***学号***实验组实验时间2015-4-18指导教师蔡丽成绩实验项目名称TCP同步编程实验目的通过本实验掌握C#中TCP同步编程的方法,了解其区别与适用场合。实验要求实现简单的基于TCP或UDP的通信程序(可以基于控制台,也可以基于窗体),要求使用C#的基础Socket。实验原理通过本实验掌握C#中的网络编程socket同步编程实验环境Visualstudio2010实验步骤1.设计程序界面。2.实现程序功能。实验内容实现简单的基于同步TCP的通信程序,要求使用C#的TCP同步
2、方法。实验数据核心代码:服务器的代码usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Net;usingSystem.Net.Sockets;usingSystem.Threading;usingSystem.IO;namespaceSyncT
3、cpServer{publicpartialclassfrmSyncTcpServer:Form{privateIPAddresslocalAddress;privateconstintport=51888;privateTcpListenertcpListener;privateTcpClienttcpClient;privateNetworkStreamnetworkStream;privateBinaryReaderbr;privateBinaryWriterbw;privateintsendCount=1;privateintreceive
4、Count=10;/*------------声明委托------------*///显示消息privatedelegatevoidShwMsgforViewCallBack(stringstr);privateShwMsgforViewCallBackshwMsgforViewCallBack;//显示状态privatedelegatevoidShwStatusInfoCallBack(stringstr);privateShwStatusInfoCallBackshwStatusInfoCallBack;//显示进度privatedelegat
5、evoidShwProgressProcCallBack(intprogress);privateShwProgressProcCallBackshwProgressProcCallBack;//重置消息文本privatedelegatevoidResetMsgTxtCallBack();privateResetMsgTxtCallBackresetMsgTxtCallBack;/*------------声明委托------------*/publicfrmSyncTcpServer(){InitializeComponent();/*-----
6、-----定义委托----------*///显示消息shwMsgforViewCallBack=newShwMsgforViewCallBack(ShwMsgforView);//显示状态shwStatusInfoCallBack=newShwStatusInfoCallBack(ShwStatusInfo);//显示进度shwProgressProcCallBack=newShwProgressProcCallBack(ShwProgressProc);//重置消息文本resetMsgTxtCallBack=newResetMsgTxtCall
7、Back(ResetMsgTxt);/*----------定义委托----------*/IPAddress[]listenIp=Dns.GetHostAddresses(Dns.GetHostName());localAddress=listenIp[1];//stringhostname=Dns.GetHostName();//IPHostEntrylocalhost=Dns.GetHostByName(hostname);//localAddress=localhost.AddressList[0];tbxSendCount.Text=se
8、ndCount.ToString();tbxReceiveCount.Text=receiveCount.ToString
此文档下载收益归作者所有