ftp客户端软件的设计.doc
约30页DOC格式手机打开展开
ftp客户端软件的设计,2万字30页包含代码摘要: ftp是internet上使用最广泛的应用之一。ftp服务是以它所使用的文件传输协议(file transfer protocol)命名的。 目前internet上几乎所有的计算机系统上,都带有ftp工具,用户可以通过它们将文档通过网络从一台计算机传送到另外一台计算机上。目前匿名ftp是in...
内容介绍
此文档由会员 比尔盖茨 发布
2万字 30页 包含代码
摘要:
FTP是Internet上使用最广泛的应用之一。FTP服务是以它所使用的文件传输协议(File Transfer Protocol)命名的。 目前Internet上几乎所有的计算机系统上,都带有FTP工具,用户可以通过它们将文档通过网络从一台计算机传送到另外一台计算机上。目前匿名FTP是Internet上进行资源共享的主要途径之一。FTP服务使用的是时下使用广泛的客户端/服务器(C/S)模式,即设立一台计算机作为提供FTP服务的服务器,它接受其它计算机的FTP服务请求并相应,提供FTP服务。这些需要服务的计算机叫做客户端。这种客户端/服务器(C/S)模式在网络服务上有很重要的应用,于是对于网络应用程序的开发也分为服务器端和客户端两部分。由于客户端软件使用人数众多,它的易用性、高效性就有了更高的要求。
通过使用功能强大的Visual C++6.0和它提供的专门针对Internet网络编程标准程序类库WinInet开发FTP客户端软件,不但能体现客户端/服务器(C/S)模式开发的特点,还可以开发出更好的应用软件。
关键词 FTP; MFC; CLASS; C/S
Abstract
For the purpose of making a convenient, useful and tidy FTP client system, Abandoned some trivial function in other FTP client programs. And choose the Visual C++ 6.0 to be the developing environment, pick out the MFC: WinInet class; by using the method which WinInet class offered, we can easily build up our program running on the client we need.
This document includes the theory of FTP protocol; introduction of developing environment; the details of the FTP Client system; and the debugging proceeds
Keywords FTP; MFC; CLASS; C/S
目 录
1 绪 论
2 FTP工作原理
3 开发工具及环境介绍
3.1 C语言概述
3.3 利用WinInet
4 FTP客户端软件的开发
5 软件测试
5.1 测试方案
5.1.1 系统可能出现的问题与不足
5.1.2 采用的测试类型
5.2 测试的过程与结果分析
5.2.1 单元测试
5.2.2 增量型的集成测试
5.2.3 兼容性测试
5.3 测试小结
6 结 论
致 谢
参考文献
摘要:
FTP是Internet上使用最广泛的应用之一。FTP服务是以它所使用的文件传输协议(File Transfer Protocol)命名的。 目前Internet上几乎所有的计算机系统上,都带有FTP工具,用户可以通过它们将文档通过网络从一台计算机传送到另外一台计算机上。目前匿名FTP是Internet上进行资源共享的主要途径之一。FTP服务使用的是时下使用广泛的客户端/服务器(C/S)模式,即设立一台计算机作为提供FTP服务的服务器,它接受其它计算机的FTP服务请求并相应,提供FTP服务。这些需要服务的计算机叫做客户端。这种客户端/服务器(C/S)模式在网络服务上有很重要的应用,于是对于网络应用程序的开发也分为服务器端和客户端两部分。由于客户端软件使用人数众多,它的易用性、高效性就有了更高的要求。
通过使用功能强大的Visual C++6.0和它提供的专门针对Internet网络编程标准程序类库WinInet开发FTP客户端软件,不但能体现客户端/服务器(C/S)模式开发的特点,还可以开发出更好的应用软件。
关键词 FTP; MFC; CLASS; C/S
Abstract
For the purpose of making a convenient, useful and tidy FTP client system, Abandoned some trivial function in other FTP client programs. And choose the Visual C++ 6.0 to be the developing environment, pick out the MFC: WinInet class; by using the method which WinInet class offered, we can easily build up our program running on the client we need.
This document includes the theory of FTP protocol; introduction of developing environment; the details of the FTP Client system; and the debugging proceeds
Keywords FTP; MFC; CLASS; C/S
目 录
1 绪 论
2 FTP工作原理
3 开发工具及环境介绍
3.1 C语言概述
3.3 利用WinInet
4 FTP客户端软件的开发
5 软件测试
5.1 测试方案
5.1.1 系统可能出现的问题与不足
5.1.2 采用的测试类型
5.2 测试的过程与结果分析
5.2.1 单元测试
5.2.2 增量型的集成测试
5.2.3 兼容性测试
5.3 测试小结
6 结 论
致 谢
参考文献