【编者按】网学网计算机论文频道为大家收集整理了“基于WINSOCK的网络聊天工具“提供大家参考,希望对大家有所帮助!
论文字数:10990,页数:31
摘要
本课题以计算机网络原理为指导,编程实现基于WINSOCK的网络聊天,该聊天工具客户端具有群聊、二人私聊、以及文件传输等功能。本论文主要对该聊天软件相关的技术,以及聊天工具的实现做了详细的阐述。聊天工具的开发用到网络通信、文件传输和windows的多线程技术等,本聊天软件基于WINSOCK通信,实现点对点、聊天室的聊天和文件的传输,可以运行于任何支持tcp/ip,upd,ftp协议的机器上。由于系统采用C/S模式,客户端与客户端以及客户端与服务器端需要传送一些控制消息。而文件传输作为独立的模块,拓展了该聊天工具的功能。
关键词: 网络通信,Winsock,聊天,文件传输
Abstract
The design is guided by computer network principal and achieves the Internet chat Which is based on WINSOCK. The software’s functions include chatting-room chat,broadcasted chat,point to point private chat,sound chat and transporting files. The Text mainly detailed on the technicals of chatting software and the designing, programming of the software for chatting tool, The development of the chatting tool mainly takes advantages of the network communication technicals,transporting files technicals,multiple threads technical on windows. The software is based on the communication of the WINSOCK, implementing the point to point chat, broadcasting chat and the files transporting. This chat tool runs on the any machine which supports the tcp/ip,upd or ftp protocol. because of the system’s C/S structure ,It needs to transport some control information between client and client, client and server. Transporting files,which is as an independent module,greatly adds up the functions of chatting tool.
Keywords:Network communication,Winsock,Chatting, File transporting
目录
摘要 I
Abstract II
第1章 引言 1
1.1 背景 1
1.2 研究内容 1
1.3 项目开发的意义 1
第2章 聊天软件系统分析 3
2.1 对已有聊天软件的分析 3
2.2 系统有关的技术 4
2.2.1 网络通信技术 4
2.2.3 文件传输技术 5
2.3 系统方案说明 6
2.3.1 可选择的其他系统方案 6
2.3.2 本系统的方案 6
2.4 系统任务概述 7
2.5 系统性能要求 7
第3章 开发软件介绍 8
3.1 VB简介 8
3.2 VB主要控件 9
3.2.1文本控件 9
3.2.2 Winsock控件 9
第4章 系统设计 12
4.1 系统的物理结构 12
4.2 系统的软件结构 12
4.2.1系统划分 12
4.2.2 子系统描述 12
4.2.3 系统功能模型图 13
4.3 聊天室服务器端接收消息线程的程序设计 14
4.4 二人私聊接收消息线程的程序设计 15
4.5 文件传送的程序设计 16
第5章 系统实现 18
5.1系统界面设计及实现 18
5.1.1 登录界面 18
5.1.2 系统主界面 18
5.1.3 个人设置界面 19
5.1.4 菜单按钮 20
5.1.5 系统设置 23
第6章 结束语 25
致谢 26
参考文献 27