package isale.ftp.test;
import java.io.IOException;
import java.io.OutputStream;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPFile;
/**
* 使用commons的net包进行ftp链接. 相关包:commons-net-1.4.1.jar ;
* commons-io-1.2.jar;jakarta-oro-2.0.8.jar测试通过.可以列出ftp上的文件
* 通过把ftp服务器上的文件流连接到outSteam及可以把文件下载到本机的目录..限制如果目录为中文则需要处理.最好使用英文文件名
*
* @author xzgf email:
*
*
* @create 2007-2-11
*
*/
public class ListFtpFile {
private FTPClient ftpClient = new FTPClient();
private OutputStream outStream = null;
/**
* ftp服务器地址
*/
private String hostName = "192.168.0.3";
/**
* 登录名
*/
private String userName = "isale";
/**
* 登录密码
*/
private String password = "isale";
/**
* 需要访问的远程目录
*/
private String remoteDir = "/bugzillaBackup";
/**
* 登录方法
*
*/
private void login() {
try {
// 链接到ftp服务器
ftpClient.connect(hostName);
System.out.println("连接到ftp服务器:" + hostName + " 成功..开始登录");
// 登录.用户名 密码
ftpClient.login(userName, password);
System.out.println("登录成功.");
FTPFile[] remoteFiles = ftpClient.listFiles(remoteDir);
System.out.println("目录" + remoteDir + "下的文件:");
if (remoteFiles != null) {
for (int i = 0; i < remoteFiles.length; i++) {
String name = remoteFiles[i].getName();
long length = remoteFiles[i].getSize();
String readableLength = FileUtils
.byteCountToDisplaySize(length);
System.out.println(name + ":\t\t" + readableLength);
}
}
} catch (Exception e) {
e.printStackTrace();
} finally {
// 使用IO包关闭流
if (outStream == null) {
System.out.println("outStream is null.");
}
IOUtils.closeQuietly(outStream);
try {
ftpClient.disconnect();
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
}
public static void main(String[] args) {
ListFtpFile listFtpfiles = new ListFtpFile();
listFtpfiles.login();
}
}
package isale.ftp.test;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.UnsupportedEncodingException;
import java.util.Properties;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPClientConfig;
import org.apache.commons.net.ftp.FTPReply;
public class FtpClientCommonNetImpl {
// ftp配置
private Properties config;
protected FTPClient connectFtpServer() throws Exception {
String server = this.config.getProperty("server");
String userName = this.config.getProperty("userName");
String password = this.config.getProperty("password");
// 创建ftp客户端对象
FTPClient ftp = new FTPClient();
try {
ftp.configure(this.getFTPClientConfig());
// 连接ftp服务器
ftp.connect(server);
// 登录
ftp.login(userName, password);
// 返回值
int reply = ftp.getReplyCode();
if ((!FTPReply.isPositiveCompletion(reply))) {
ftp.disconnect();
throw new Exception("登录ftp服务器失败,请检查server[" + server
+ "]、username[" + userName + "]、password[" + password
+ "]是否正确!");
} else {
System.out.println("登陆成功");
}
return ftp;
} catch (Exception ex) {
throw ex;
}
}
/**
* 关闭连接
*
* @param ftp
* @throws Exception
*/
protected void disconnectFtpServer(FTPClient ftp) throws Exception {
try {
ftp.logout();
ftp.disconnect();
} catch (Exception ex) {
throw ex;
}
}
/**
* 上传
*
* @throws Exception
*/
public void upload(InputStream localIn, String remoteFilePath)
throws Exception {
/*
* String server = this.config.getProperty("server"); String userName =
* this.config.getProperty("userName"); String password =
* this.config.getProperty("password");
*/
FTPClient ftp = this.connectFtpServer();
try {
boolean result = ftp.storeFile(this
.enCodingRemoteFilePath(remoteFilePath), localIn);
// boolean result=ftp.storeFile(remoteFilePath,localIn);
if (!result) {
throw new Exception("文件上传失败!");
}
} catch (Exception ex) {
throw ex;
} finally {
this.disconnectFtpServer(ftp);
}
}
/**
* 下载
*
* @throws Exception
*/
public void download(OutputStream localOut, String remoteFilePath)
throws Exception {
FTPClient ftp = this.connectFtpServer();
try {
boolean result = ftp.retrieveFile(this
.enCodingRemoteFilePath(remoteFilePath), localOut);
// boolean result=ftp.storeFile(remoteFilePath,localIn);
if (!result) {
throw new Exception("文件上传失败!");
}
} catch (Exception ex) {
throw ex;
} finally {
this.disconnectFtpServer(ftp);
}
}
/**
* 上传结束以后关闭输入流
*
* @param localIn
* @param remoteFilePath
* @param afterUploadCloseInputStream
* @throws Exception
* @throws FtpException
*/
public void upload(InputStream localIn, String remoteFilePath,
boolean afterUploadCloseInputStream) throws Exception {
try {
// 上传
this.upload(localIn, remoteFilePath);
} finally {
if (afterUploadCloseInputStream) {
if (localIn != null) {
try {
localIn.close();
} catch (Exception ex) {
throw ex;
}
}
}
}
}
/**
* 得到配置
*
* @return
*/
protected FTPClientConfig getFTPClientConfig() {
// 创建配置对象
FTPClientConfig conf = new FTPClientConfig(this.config.getProperty(
"systemKey", FTPClientConfig.SYST_NT));
conf.setServerLanguageCode(this.config.getProperty(
"serverLanguageCode", "zh"));
return conf;
}
/**
* 远程文件路径编码(上传到ftp上的文件路径)
*
* @param remoteFilePath
* @return
* @throws UnsupportedEncodingException
*/
protected String enCodingRemoteFilePath(String remoteFilePath)
throws UnsupportedEncodingException {
// return StringUtils.gbkToIso8859EnCoding(remoteFilePath);
return new String(remoteFilePath.getBytes("gbk"), "ISO8859-1");
}
public Properties getConfig() {
return config;
}
public void setConfig(Properties config) {
this.config = config;
}
}
package isale.ftp.test;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Properties;
import org.apache.commons.net.ftp.FTPClientConfig;
public class FtpMain {
public static void main(String[] args) {
/* //完成上传功能
FtpClientCommonNetImpl fccn = new FtpClientCommonNetImpl();
Properties properties=new Properties();
properties.setProperty("systemKey",FTPClientConfig.SYST_NT);
properties.setProperty("serverLanguageCode","zh");
InputStream is = null;
try {
is = new FileInputStream("D:/Javascript权威指南/中国IT认证实验室学习下载频道.txt");
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
properties.setProperty("server","192.168.0.3");
properties.setProperty("userName","isale");
properties.setProperty("password","isale");
fccn.setConfig(properties);
try {
fccn.upload(is, "/bugzillaBackup/javacript.java",true);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
// 完成下载功能
FtpClientCommonNetImpl fccn = new FtpClientCommonNetImpl();
Properties properties=new Properties();
properties.setProperty("systemKey",FTPClientConfig.SYST_NT);
properties.setProperty("serverLanguageCode","zh");
OutputStream os = null;
try {
os = new FileOutputStream("E:/中国IT认证实验室学习下载频道.txt");
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
properties.setProperty("server","192.168.0.3");
properties.setProperty("userName","isale");
properties.setProperty("password","isale");
fccn.setConfig(properties);
try {
fccn.download(os, "/bugzillaBackup/javacript.java");
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
分享到:
相关推荐
FTP文件上传下载器是一款基于FTP(File Transfer Protocol)协议开发的应用程序,主要功能是实现文件的上传和下载。FTP是一种互联网标准,用于在不同网络之间的计算机之间交换文件。这款工具通常由C#编程语言实现,...
Java FTP文件上传下载是Java开发中常见的网络编程任务,它涉及到Java语言的Socket编程和FTP(File Transfer Protocol)协议的应用。FTP是一种用于在网络上进行文件传输的标准协议,它允许客户端从服务器上获取文件...
以上就是使用C#的`FtpWebRequest`类实现FTP文件上传和下载的基本步骤。在实际应用中,可能还需要处理异常、错误检查、断点续传等功能。在开发过程中,确保遵循最佳实践,如使用异步操作以提高性能,以及确保数据的...
FTP(File Transfer Protocol)文件上传下载源代码是一个基于MFC(Microsoft Foundation Classes)库实现的程序,用于模拟如FlashFXP这样的专业FTP客户端工具。这个源代码提供了对FTP协议的基本支持,包括连接到FTP...
FTP上传下载文件
虽然现在最新的版本可能更稳定且功能更全,但1.4.1版本依然可以满足基本的FTP文件上传下载需求。 使用Apache Commons Net库的步骤大致如下: 1. **添加依赖**:首先,将`commons-net-1.4.1.jar`添加到你的项目类...
在IT行业中,Visual C++是一种...总之,开发Visual C++的FTP文件上传下载模块涉及网络编程、FTP协议理解、MFC库的使用等多个方面。通过熟练掌握这些知识点,你可以构建出高效、可靠的FTP客户端功能,满足实际项目需求。
这个“使用java进行ftp文件上传下载demo(含jar)”项目提供了一个可运行的示例,帮助开发者了解如何在Java中实现FTP功能。下面我们将详细探讨这个项目涉及的关键知识点。 1. **Java FTP库**: - 为了在Java中实现...
本源码示例着重讲解如何实现FTP文件上传下载的功能,并结合日志配置和使用,以便在程序运行过程中记录操作详情,便于问题排查和系统监控。 1. FTP文件上传下载: - FTP连接:首先需要建立一个FTP连接,这通常涉及...
FTP文件上传下载Util类
### Java_FTP文件上传下载详解 #### 一、引言 在现代企业级应用中,文件的批量上传下载成为了一项基本需求,特别是在大规模工程项目的实施过程中,涉及到大量且体积庞大的文件交换。本文旨在深入探讨如何利用Java...
综上所述,FTP文件上传下载删除操作是网络环境中常见的文件管理手段,它简化了跨设备、跨网络的数据交换。尽管现代有许多其他更安全的文件传输协议,但FTP因其简单易用和广泛支持,仍然在很多场景下被广泛应用。
这个压缩包文件"FTP文件上传下载封装和调用.zip"包含了使用VC++开发的FTP功能的封装和调用示例,主要涉及到以下几个核心知识点: 1. FTP协议原理:FTP允许用户在两台计算机之间交换文件,通过命令和响应的交互完成...
C# FTPC#实现ftp文件上传下载C#实现ftp文件上传下载C#实现ftp文件上传下载C#实现ftp文件上传下载C#实现ftp文件上传下载C#实现ftp文件上传下载C#实现ftp文件上传下载C#实现ftp文件上传下载C#实现ftp文件上传下载
本文将深入探讨如何使用Java实现FTP文件上传和下载,包括基本概念、核心类库、实现步骤以及测试用例。 首先,Java通过`java.net`和`org.apache.commons.net.ftp`两个主要库支持FTP操作。`java.net`库中的`FTPClient...
C++作为一门强大的系统编程语言,可以用来实现FTP客户端或服务器端的程序,以实现文件的上传和下载功能。本课程设计的目标就是让学生掌握FTP的工作原理,并通过C++编程实践,实现一个简单的命令行FTP客户端。 FTP...
FTP是一种实现不同主机之间文件共享的软件,只要设置了用户设置了自己的共享目录 当其他用户访问该主机时就可以看到共享文件实现下载和上传的功能
ftp 文件上传下载应用
- 使用JavaScript函数改变当前窗口的位置为FTP文件的URL,从而实现文件下载。 ```javascript function fileDown() { var url = 'ftp://' + audioFtpUser + ':' + audioFtpPwd + '@' + audioServerIP + ':' + ...