欢迎来到天天文库
浏览记录
ID:13884351
大小:190.00 KB
页数:8页
时间:2018-07-24
《基于udp协议的网络会议程序设计》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、北京理工大学珠海学院实验报告ZHUHAICAMPAUSOFBEIJINGINSTITUTEOFTECHNOLOGY班级:09计算机4班学号:090201041023姓名:陈家杰指导教师:张海燕成绩:实验题目基于UDP协议的网络会议程序设计实验时间:2012一、实验目的、意义1、掌握利用C#进行程序设计的能力2、掌握开发一个小型使用系统的基本方法3、学会调试一个较长程序的基本方法4、掌握winsocket编程方法二、实验内容及要求利用UDP协议的组播实现网络会议的设计,要求能加入和退出会议,并在会议上发言,界面友好实用。三、实验所涉及的知识点1、winsocke
2、t接口的通讯原理2、udp协议的内容四、实验结果8五、总结与体会通过本次基于udp协议的网络会议聊天工具的设计,受益匪浅,并对internet网络编程实践这一门课程与相关一些技术有了更深一步的认识。在实验中,我可以把这学期所学的理论知识和实践联系起来,在所要设计的程序中渐渐融会贯通。通过实践我进一步掌握利用C#进行程序设计的能力,进一步理解和运用面向对象程序设计的思想和方法,掌握开发一个小型使用系统的基本方法,学会调试一个较长程序的基本方法,掌握winsocket编程方法。六、程序清单(包含注释)/***Program.cs***/usingSystem;us
3、ingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Windows.Forms;namespacemeetingroom{staticclassProgram{//////应用程序的主入口点。///[STAThread]staticvoidMain(){Application.EnableVisualStyles();8Application.SetCompatibleTextRenderingDefault(false);Application.Run(n
4、ewForm1());}}}/***Form1.cs***/usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Net;usingSystem.Net.Sockets;usingSystem.Threading;namespacemeetingroom{pu
5、blicpartialclassForm1:Form{SocketudpSocket;//创建一个套接字IPAddressip;intport=6900;boolisExit=false;ThreadreceiveThread;//接收线程IPAddressgroupAddress;//组播地址publicForm1(){InitializeComponent();}privatevoidForm1_Load(objectsender,EventArgse){udpSocket=newSocket(AddressFamily.InterNetwork,Sock
6、etType.Dgram,ProtocolType.Udp);}privatevoidbutton1_Click(objectsender,EventArgse){groupAddress=IPAddress.Parse("224.200.0.1");ip=Dns.GetHostEntry(Dns.GetHostName()).AddressList[0];IPEndPointpoint=newIPEndPoint(ip,port);8try{udpSocket.Bind(point);//在该端点上接收信息}catch(Exceptionex){Messag
7、eBox.Show("绑定失败!"+ex.ToString());}receiveThread=newThread(receiveData);receiveThread.Start();//启动接收线程MulticastOptionAddress=newMulticastOption(groupAddress,IPAddress.Any);udpSocket.SetSocketOption(SocketOptionLevel.IP,SocketOptionName.AddMembership,Address);IPEndPointendPoint=newIPE
8、ndPoint(groupAddres
此文档下载收益归作者所有