欢迎来到天天文库
浏览记录
ID:6663728
大小:80.00 KB
页数:12页
时间:2018-01-21
《116.网 络 程 序 设 计报告》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、设计报告课程名称:网络程序设计学院:电子科学与信息技术专业:信息安全姓名:学号:年级:2005级任课教师:2008年6月29日TcpFileTransferDemo设计一、设计目标:基于TCP的文件传输二、技术原理简介:应用层网络协议设计掌握TCP服务端和客户端程序的编写方法三、需求分析:使用TCP监听的服务端网络程序模型协议的解析处理文件列表获取、传输和显示功能的实现文件内容获取、传输和显示功能的实现四、设计思路:1、设计一个发送方windows窗体,上边放目标IP、域名按钮、一个端浏览钮,开始,取消按钮。2、一个TCP文件传输窗体,启动发送方按钮,启动接收方按钮。3、接收方窗
2、体,监听端口,开始按钮,停止按钮。五、设计框图:进行传输建立传输断六、关键部分窗体:七、:关键代码及其注释:主窗体:privatevoidInitializeComponent(){this.btnStartSender=newSystem.Windows.Forms.Button();this.StartReceiver=newSystem.Windows.Forms.Button();this.dlgFindFile=newSystem.Windows.Forms.OpenFileDialog();this.SuspendLayout();////StartSender//t
3、his.btnStartSender.Location=newSystem.Drawing.Point(16,16);this.btnStartSender.Name="btnStartSender";this.btnStartSender.Size=newSystem.Drawing.Size(176,32);this.btnStartSender.TabIndex=0;this.btnStartSender.Text="启动发送方";this.btnStartSender.Click+=newSystem.EventHandler(this.btnStartSender_Cl
4、ick);////StartReceiver//this.StartReceiver.Location=newSystem.Drawing.Point(16,56);this.StartReceiver.Name="StartReceiver";this.StartReceiver.Size=newSystem.Drawing.Size(176,32);this.StartReceiver.TabIndex=1;this.StartReceiver.Text="启动接收方";this.StartReceiver.Click+=newSystem.EventHandler(this
5、.StartReceiver_Click);////Controller//this.AutoScaleBaseSize=newSystem.Drawing.Size(6,14);this.ClientSize=newSystem.Drawing.Size(208,104);this.Controls.Add(this.StartReceiver);this.Controls.Add(this.btnStartSender);this.FormBorderStyle=System.Windows.Forms.FormBorderStyle.FixedSingle;this.Max
6、imizeBox=false;this.MinimizeBox=false;this.Name="Controller";this.StartPosition=System.Windows.Forms.FormStartPosition.CenterScreen;this.Text="TCP文件传输";this.Load+=newSystem.EventHandler(this.Controller_Load);this.ResumeLayout(false);}接收方:namespaceReceiver{publicclassReceiver:System.Windows.Fo
7、rms.Form{privateSystem.Windows.Forms.TextBoxtxtPort;privateSystem.Windows.Forms.Labellabel2;privateSystem.Windows.Forms.ButtonbtnStart;privateSystem.Windows.Forms.LabellblStatus;privateSystem.Windows.Forms.Labellabel4;privateSystem.Windows.Fo
此文档下载收益归作者所有