ftp客戶端軟件的設(shè)計.doc
約30頁DOC格式手機打開展開
ftp客戶端軟件的設(shè)計,2萬字30頁包含代碼摘要: ftp是internet上使用最廣泛的應(yīng)用之一。ftp服務(wù)是以它所使用的文件傳輸協(xié)議(file transfer protocol)命名的。 目前internet上幾乎所有的計算機系統(tǒng)上,都帶有ftp工具,用戶可以通過它們將文檔通過網(wǎng)絡(luò)從一臺計算機傳送到另外一臺計算機上。目前匿名ftp是in...
內(nèi)容介紹
此文檔由會員 比爾蓋茨 發(fā)布
2萬字 30頁 包含代碼
摘要:
FTP是Internet上使用最廣泛的應(yīng)用之一。FTP服務(wù)是以它所使用的文件傳輸協(xié)議(File Transfer Protocol)命名的。 目前Internet上幾乎所有的計算機系統(tǒng)上,都帶有FTP工具,用戶可以通過它們將文檔通過網(wǎng)絡(luò)從一臺計算機傳送到另外一臺計算機上。目前匿名FTP是Internet上進行資源共享的主要途徑之一。FTP服務(wù)使用的是時下使用廣泛的客戶端/服務(wù)器(C/S)模式,即設(shè)立一臺計算機作為提供FTP服務(wù)的服務(wù)器,它接受其它計算機的FTP服務(wù)請求并相應(yīng),提供FTP服務(wù)。這些需要服務(wù)的計算機叫做客戶端。這種客戶端/服務(wù)器(C/S)模式在網(wǎng)絡(luò)服務(wù)上有很重要的應(yīng)用,于是對于網(wǎng)絡(luò)應(yīng)用程序的開發(fā)也分為服務(wù)器端和客戶端兩部分。由于客戶端軟件使用人數(shù)眾多,它的易用性、高效性就有了更高的要求。
通過使用功能強大的Visual C++6.0和它提供的專門針對Internet網(wǎng)絡(luò)編程標(biāo)準(zhǔn)程序類庫WinInet開發(fā)FTP客戶端軟件,不但能體現(xiàn)客戶端/服務(wù)器(C/S)模式開發(fā)的特點,還可以開發(fā)出更好的應(yīng)用軟件。
關(guān)鍵詞 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 開發(fā)工具及環(huán)境介紹
3.1 C語言概述
3.3 利用WinInet
4 FTP客戶端軟件的開發(fā)
5 軟件測試
5.1 測試方案
5.1.1 系統(tǒng)可能出現(xiàn)的問題與不足
5.1.2 采用的測試類型
5.2 測試的過程與結(jié)果分析
5.2.1 單元測試
5.2.2 增量型的集成測試
5.2.3 兼容性測試
5.3 測試小結(jié)
6 結(jié) 論
致 謝
參考文獻
摘要:
FTP是Internet上使用最廣泛的應(yīng)用之一。FTP服務(wù)是以它所使用的文件傳輸協(xié)議(File Transfer Protocol)命名的。 目前Internet上幾乎所有的計算機系統(tǒng)上,都帶有FTP工具,用戶可以通過它們將文檔通過網(wǎng)絡(luò)從一臺計算機傳送到另外一臺計算機上。目前匿名FTP是Internet上進行資源共享的主要途徑之一。FTP服務(wù)使用的是時下使用廣泛的客戶端/服務(wù)器(C/S)模式,即設(shè)立一臺計算機作為提供FTP服務(wù)的服務(wù)器,它接受其它計算機的FTP服務(wù)請求并相應(yīng),提供FTP服務(wù)。這些需要服務(wù)的計算機叫做客戶端。這種客戶端/服務(wù)器(C/S)模式在網(wǎng)絡(luò)服務(wù)上有很重要的應(yīng)用,于是對于網(wǎng)絡(luò)應(yīng)用程序的開發(fā)也分為服務(wù)器端和客戶端兩部分。由于客戶端軟件使用人數(shù)眾多,它的易用性、高效性就有了更高的要求。
通過使用功能強大的Visual C++6.0和它提供的專門針對Internet網(wǎng)絡(luò)編程標(biāo)準(zhǔn)程序類庫WinInet開發(fā)FTP客戶端軟件,不但能體現(xiàn)客戶端/服務(wù)器(C/S)模式開發(fā)的特點,還可以開發(fā)出更好的應(yīng)用軟件。
關(guān)鍵詞 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 開發(fā)工具及環(huán)境介紹
3.1 C語言概述
3.3 利用WinInet
4 FTP客戶端軟件的開發(fā)
5 軟件測試
5.1 測試方案
5.1.1 系統(tǒng)可能出現(xiàn)的問題與不足
5.1.2 采用的測試類型
5.2 測試的過程與結(jié)果分析
5.2.1 單元測試
5.2.2 增量型的集成測試
5.2.3 兼容性測試
5.3 測試小結(jié)
6 結(jié) 論
致 謝
參考文獻