您现在的位置:网站首页答辩论文计算机毕业设计JAVA/JSP

关于FTP传输的设计与实现

  • 简介:前 言 随着计算机网络技术的飞速发展,客户/服务C/S(Client/Sersver)结构成为开发FTP的网络编程结构,Java作为Web应用程序的开发技术也为更多的人所采用。 起初, FTP并不是应用于IP网络上的协议,而是ARPANET网络中计算机间的文件传输协议, ARPANET是...
    • 请与管理员联系购买资料 QQ:5739126
  • 论文简介
  • 相关论文
  • 论文下载

 

随着计算机网络技术的飞速发展,客户/服务C/S(Client/Sersver)结构成为开发FTP的网络编程结构,JavaWeb应用程序的开发技术也为更多的人所采用。

起初, FTP并不是应用于IP网络上的协议,而是ARPANET网络中计算机间的文件传输协议, ARPANET是美国国防部组建的老网络,于1960-1980年使用。在那时, FTP的主要功能是在主机间高速可靠地传输文件。目前FTP仍然保持其可靠性,即使在今天,它还允许文件远程存取。这使得用户可以在某个系统上工作,而将文件存贮在别的系统。例如,如果某用户运行Web服务器,需要从远程主机上取得HTML文件和CGI程序在本机上工作,他需要从远程存储站点获取文件(远程站点也需安装Web服务器)。当用户完成工作后,可使用FTP将文件传回到Web服务器。采用这种方法,用户无需使用Telnet登录到远程主机进行工作,这样就使Web服务器的更新工作变得如此的轻松。

Internet上的许多环境一样,完整的Java应用环境实际上也是一个客户机/服务器环境,更确切地说是浏览器/服务器模型(即Browser/Server模型,简称Web模型)。但与传统的客户机/服务器(C/S)的二层结构不同,应用JavaWeb模型是由三层结构组成的。传统的C/S结构通过消息传递机制,由客户端发出请求给服务器,服务器进行相应处理后经传递机制送回客户端。而在Web模型中,服务器一端被分解成两部分:一部分是应用服务器(Web服务器),另一部分是数据库服务器.

关键词FTPC/SB/S

 

 

  

 

PREFACE

As the computer network technology is developing in a high speed. C/S (Client/Server) has become a FTP network programming structure. Java is used more and more as a Web application program.

In the beginning, FTP was not be used in IP net protocol, but which is used in ARPANEt network computers. ARPANEt was an old network of the U.S. Department of Defense between 1960s and 1980s.At that period the main function of the FTP is transmitting documents reliably and in high speed between the master computers. At present, it also does very well, furthermore, it permits store or access in telecommuting today. So the users can work on one system and store the document in another.  For example, someone use the Web server, and need some HTML document and CGI program on his own computer, and want to acquire some documents, (the telnet need install Web server). When the user finished he can store the document to the Web server by the FTP. In this way, the user can work without Telnet, which make the Web server update more and more easier.

The whole Java circumstance actually is a C/S (Client/Server) like the other circumstances on the Internet, strictly to say, it is   Browser/Server model (Web model). But it is different from the traditional C/S model that is two layers structure. The Web using Java is three layers structure. The traditional C/S structure transmits by the message mechanism. The Client sent a request, and the Server sent to it after some corresponding manages. But in the Web model the Server is separated into two parts, one is the application Server (Web Server); another is database Server.

Keywords: FTPC/SB/S

 

 目录

  ... 1

PREFACE.. 2

第一章 引言... 4

1.1选题背景... 4

1.2 选题目的... 5

1.3 FTP简介... 5

第二章  Java简介... 7

2.1什么是Java. 7

2.2 Java的特性... 7

2.2.1 Java的特性... 7

2.2.2 JavaCC++. 9

2.3  Java体系结构... 10

2.3.1 Java虚拟机... 10

2.3.2 Java体系... 10

第三章  Jbuilder 9.0编程环境... 10

3.1 Jbuiler 9.0开发环境概述... 10

3.1.1结构易于创建... 11

3.1.2结构的可维护性... 11

3.1.3可视化编程... 11

3.2 Jbuilder9.0的安装... 11

3.2.1安装环境... 11

3.2.2安装步骤... 11

第四章 JavaC/S网络中的应用... 13

4.1 JavaC/S网络的应用概述... 13

4.2 Java在网络中的通信协议... 13

4.3 Java在网络中的通信端口... 13

4.4 C/S的网络通信模式... 14

4.5 Java的网络类库... 15

4.6 Jbuilder9FTP库简介... 16

第五章 建立个人Ftp服务器... 18

5.1 Ftp个人服务的作用... 18

5.2 FTP服务器端软件Serv-U.. 18

5.2.1 Serv-U介绍... 18

5.2.2 安装和基本设置... 18

5.2.3 设置匿名登录... 21

5.2.4 创建新账户... 21

5.2.5下载和上传... 22

第六章 Ftp上传下载软件开发... 22

6.1功能说明... 22

6.2设计思路... 23

6.2.1程序设计流程图... 23

6.2.2主界面样子... 23

6.3 各部界面设计... 24

6.3.1主界面设计... 24

6.3.2连接FTP服务器界面的设计... 25

6.3.3文件处理界面的设计... 26

6.4界面设计的程序实现... 26

6.4.1主要界面的布局... 26

6.4.2登录程序... 29

6.4.3浏览程序... 30

6.4.4文件下载和上传程序... 34

第七章 浅析Ftp的工作原理... 38

7.1 Ftp的概述... 38

7.2 Ftp的工作原理... 39

7.2.1 Ftp分析... 39

7.3 Ftp登录... 39

7.3.1 Ftp匿名... 39

7.3.2匿名FTP的使用... 40

第八章 软件测试... 41

8.1 测试方案... 41

8.2 测试的过程与结果分析... 42

8.3 测试小结... 44

第九章 总论... 45

   ... 46

参考文献... 47

查看评论 已有0位网友发表了看法
  • 验证码: