`

Java的ftp上传下载工具

    博客分类:
  • java
 
阅读更多

 

自己写的利用apache的net包写的ftp的上传、下载功能,可以上单个文件、文件夹,下载单个文件及文件夹整个目录,并且解决了文件、文件夹汉字问题,经过自己的正式测试。

        不讲废话了,直接上代码,愿给需要的朋友提供个帮助。

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Properties;

import org.apache.commons.lang.StringUtils;
import org.apache.commons.net.ftp.FTP;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPClientConfig;
import org.apache.commons.net.ftp.FTPFile;
import org.apache.commons.net.ftp.FTPReply;
import org.d6.utils.AppUtils;

/**
 * @author jjl
 * 
 */
public class FtpUtil {
	static String ftpUrl = null; // ftp 服务器路径
	static int ftpPort = 21; // ftp 服务器端口
	static String ftpUserName = null; // ftp 服务器用户名
	static String ftpPassword = null; // ftp 服务器密码
	static String encoding = null;
	static String serverLanguageCode = FTP.DEFAULT_CONTROL_ENCODING;
	static int timeout = 60000;
	// 配置文件路径
	static String configFile =  "ftp.properties";

	static FTPClient ftpClient = null;

	/**
	 * 创建FTPClient
	 * 
	 * @throws Exception
	 */
	private static void createFtpClient() throws Exception {
		if (ftpClient == null) {
			ftpClient = new FTPClient();
			setConnectConfig();
			connectFtp(ftpClient);
		}
	}

	/**
	 * 关闭FTPClient
	 * 
	 * @throws Exception
	 */
	private static void closeFtpClient() throws Exception {
		if (ftpClient != null) {
			ftpClient.logout();
			if (ftpClient.isConnected()) {
				ftpClient.disconnect();
			}
			ftpClient = null;
		}
	}

	/**
	 * ftp工具连接
	 * 
	 * @param ftpClient
	 * @return
	 * @throws Exception
	 */
	public static boolean connectFtp(FTPClient ftpClient) throws Exception {
		// 如果采用默认端口,可以使用ftp.connect(url)的方式直接连接FTP服务器
		ftpClient.connect(ftpUrl, ftpPort);
		
		getFtpConfig();

		// 返回登录情况
		boolean isConnect = ftpClient.login(ftpUserName, ftpPassword);

		ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE);
		// ftpClient.enterLocalPassiveMode();
		ftpClient.setFileTransferMode(FTPClient.STREAM_TRANSFER_MODE);
		ftpClient.setControlEncoding(encoding);
		
		// 设置连接时间
		ftpClient.setDataTimeout(timeout);
		// 返回代码
		int reply = ftpClient.getReplyCode();
		if (isConnect && FTPReply.isPositiveCompletion(reply)) {
			return true;
		}
		return false;
	}

	/**
	 * 上传文件
	 * 
	 * @param localPath
	 *            本地文件路径
	 * @param filename
	 *            本地文件名
	 * @param remotePath
	 *            服务器文件路径
	 * @return 成功返回true,否则返回false
	 * @throws Exception
	 */
	public static boolean uploadFile(File file, String remotePath)
			throws Exception {
		boolean success = false;

		try {
			// 创建FTPClient
			createFtpClient();

			// 判断是文件,还是文件目录
			if (file.isDirectory()) {
				success = uploadAll(file, remotePath + File.separator
						+ file.getName());
			} else {
				success = upload(file, remotePath);
			}

			// 关闭连接
			closeFtpClient();
		} catch (IOException e) {
			e.printStackTrace();
		}

		// 返回
		return success;
	}

	/**
	 * 上传文件
	 * 
	 * @param file
	 * @param remotePath
	 * @return
	 * @throws Exception
	 */
	private static boolean upload(File file, String remotePath)
			throws Exception {
		boolean success;
		// 文件
		FileInputStream inputStream = new FileInputStream(file);
		// 切换ftp工作目录
		changeWorkingDirectory(remotePath);

		// 上传文件
		success = ftpClient.storeFile(encodingGBKToISO8859(file.getName()),
				inputStream);

		inputStream.close();
		return success;
	}

	/**
	 * 上传文件
	 * 
	 * @param localPath
	 *            本地文件路径
	 * @param filename
	 *            本地文件名
	 * @param remotePath
	 *            服务器文件路径
	 * @return
	 * @throws Exception
	 */
	public static boolean uploadFile(String localPath, String filename,
			String remotePath) throws Exception {
		File file = new File(localPath + File.separator + filename);
		return uploadFile(file, remotePath);
	}

	/**
	 * 上传文件目录
	 * 
	 * @param file
	 * @param remotePath
	 * @return
	 * @throws Exception
	 */
	public static boolean uploadDirectory(String localPath, String remotePath)
			throws Exception {
		return uploadDirectory(new File(localPath), remotePath);
	}

	/**
	 * 上传文件目录
	 * 
	 * @param file
	 * @param remotePath
	 * @return
	 * @throws Exception
	 */
	public static boolean uploadDirectory(File file, String remotePath)
			throws Exception {
		boolean success = false;
		// 创建FTPClient
		createFtpClient();

		success = uploadAll(file, remotePath);

		// 关闭连接
		closeFtpClient();
		return success;
	}

	/**
	 * 上传
	 * 
	 * @param file
	 * @param remotePath
	 * @throws Exception
	 * @throws FileNotFoundException
	 * @throws IOException
	 */
	private static boolean uploadAll(File file, String remotePath)
			throws Exception {
		boolean success = false;
		// 得到文件列表
		File[] fileList = file.listFiles();
		for (File uploadFile : fileList) {
			// 循环子目录
			if (uploadFile.isDirectory()) {
				ftpClient.changeWorkingDirectory(remotePath);
				ftpClient.makeDirectory(uploadFile.getName());
				success = uploadAll(uploadFile, remotePath + File.separator
						+ uploadFile.getName());
			} else {
				// 上传文件
				success = upload(uploadFile, remotePath);
			}
		}
		return success;
	}

	/**
	 * 下载文件目录下所有文件
	 * 
	 * @param localPath
	 *            本地文件路径
	 * @param fileName
	 *            本地文件名
	 * @param remotePath
	 *            服务器路径
	 * @return 成功返回true,否则返回false
	 * @throws Exception
	 */
	public static boolean downloadDirectory(String localPath, String remotePath)
			throws Exception {
		boolean success = false;

		try {
			// 创建FTPClient
			createFtpClient();

			success = downloadAll(localPath, remotePath);

			// 关闭连接FTPClient
			closeFtpClient();
		} catch (IOException e) {
			e.printStackTrace();
		}

		return success;
	}

	/**
	 * 下载文件目录下的所有文件
	 * 
	 * @param localPath
	 * @param remotePath
	 * @param success
	 * @return
	 * @throws IOException
	 * @throws Exception
	 * @throws FileNotFoundException
	 */
	private static boolean downloadAll(String localPath, String remotePath)
			throws Exception {
		boolean success = false;

		// 切换ftp工作目录
		changeWorkingDirectory(remotePath);
		// 取出下载文件
		FTPFile[] ftpFiles = ftpClient.listFiles();
		for (FTPFile ftpFile : ftpFiles) {
			// 过滤文件名不正确的文件
			if (ftpFile.getName().equals(".") || ftpFile.getName().equals("..")) {
				continue;
			}
			if (ftpFile.isDirectory()) {
				// 创建目录
				File fileDir = new File(localPath + File.separator
						+ ftpFile.getName());
				if (!fileDir.exists()) {
					fileDir.mkdirs();
				}
				// 下载文件
				success = downloadAll(localPath + File.separator
						+ ftpFile.getName(), remotePath + File.separator
						+ ftpFile.getName());
			} else {
				// 切换ftp工作目录
				changeWorkingDirectory(remotePath);
				// 下载文件
				success = download(localPath, ftpFile);
			}
		}
		return success;
	}

	/**
	 * 切换ftp工作目录
	 * 
	 * @param remotePath
	 * @throws IOException
	 */
	private static void changeWorkingDirectory(String remotePath)
			throws IOException {
		// 转移到FTP服务器目录
		ftpClient.changeWorkingDirectory("/");
		if (StringUtils.isNotBlank(remotePath)) {
			ftpClient.changeWorkingDirectory(remotePath);
		}
	}

	/**
	 * @param localPath
	 * @param ftpFile
	 * @return
	 * @throws Exception
	 */
	private static boolean download(String localPath, FTPFile ftpFile)
			throws Exception {
		boolean success;
		// 文件目录不存在创建文件
		File fileDir = new File(localPath);
		if (!fileDir.exists()) {
			fileDir.mkdirs();
		}

		File localFile = new File(localPath + File.separator
				+ ftpFile.getName());

		OutputStream is = new FileOutputStream(localFile);
		// 下载文件
		success = ftpClient.retrieveFile(
				encodingGBKToISO8859(ftpFile.getName()), is);
		is.close();
		return success;
	}

	/**
	 * 下载文件
	 * 
	 * @param localPath
	 *            本地文件路径
	 * @param fileName
	 *            本地文件名
	 * @param remotePath
	 *            服务器路径
	 * @return 成功返回true,否则返回false
	 * @throws Exception
	 */
	public static boolean downloadFile(String localPath, String fileName,
			String remotePath) throws Exception {
		boolean success = false;

		try {
			// 创建FTPClient
			createFtpClient();

			// 转移到FTP服务器目录
			if (StringUtils.isNotBlank(remotePath)) {
				ftpClient.changeWorkingDirectory(remotePath);
			}

			// 取出下载文件
			FTPFile[] ftpFiles = ftpClient.listFiles();
			for (FTPFile ftpFile : ftpFiles) {
				String ftpFileName = ftpFile.getName();
				if (ftpFileName.equals(fileName)) {
					success = download(localPath, ftpFile);
					break;
				}
			}

			// 关闭连接FTPClient
			closeFtpClient();
		} catch (IOException e) {
			e.printStackTrace();
		}

		return success;
	}

	/**
	 * 删除一个文件
	 * 
	 * @throws Exception
	 */
	public static boolean deleteFile(String filename) throws Exception {
		boolean flag = true;
		try {
			// 创建FTPClient
			createFtpClient();
			// 删除文件
			flag = ftpClient.deleteFile(filename);
		} catch (IOException ioe) {
			ioe.printStackTrace();
		} finally {
			// 关闭连接FTPClient
			closeFtpClient();
		}

		return flag;
	}

	/**
	 * 删除目录
	 * 
	 * @throws Exception
	 */
	public static void deleteDirectory(String pathname) throws Exception {
		try {
			// 创建FTPClient
			createFtpClient();
			File file = new File(pathname);
			if (!file.isDirectory()) {
				deleteFile(pathname);
			}
			ftpClient.removeDirectory(pathname);
		} catch (IOException ioe) {
			ioe.printStackTrace();
		} finally {
			// 关闭连接FTPClient
			closeFtpClient();
		}
	}

	/**
	 * 设置参数
	 * 
	 * @param configFile
	 *            --参数的配置文件
	 */
	private static void setConnectConfig() {
		Properties property = new Properties();
		BufferedInputStream bis = null;
		try {
			// 读取配置文件
			File file = new File(configFile);
			bis = new BufferedInputStream(new FileInputStream(file));
			property.load(bis);

			// 设置文件信息
			ftpUserName = property.getProperty("ftp.userName");
			ftpPassword = property.getProperty("ftp.password");
			ftpUrl = property.getProperty("ftp.url");
			ftpPort = Integer.parseInt(property.getProperty("ftp.port"));
			encoding = property.getProperty("ftp.encoding");
			serverLanguageCode = property.getProperty("ftp.serverLanguageCode");

			// 关闭文件
			if (bis != null){
				bis.close();
			}
		} catch (FileNotFoundException e1) {
			System.out.println("配置文件 " + configFile + " 不存在!");
		} catch (IOException e) {
			System.out.println("配置文件 " + configFile + " 无法读取!");
		}
	}

	/**
	 * 重命名文件
	 * 
	 * @param oldName
	 *            原文件名
	 * @param newName
	 *            新文件名
	 * @throws Exception
	 */
	public static void renameFile(String oldName, String newName)
			throws Exception {
		try {
			// 创建FTPClient
			createFtpClient();

			// 重命名
			ftpClient.rename(oldName, newName);
		} catch (IOException ioe) {
			ioe.printStackTrace();
		} finally {
			// 关闭连接FTPClient
			closeFtpClient();
		}
	}

	/**
	 * 设置FTP客服端的配置
	 * 
	 * @return ftpConfig
	 */
	private static FTPClientConfig getFtpConfig() {
		// FTPClientConfig.SYST_UNIX
		FTPClientConfig ftpConfig = new FTPClientConfig(FTPClientConfig.SYST_NT);
		ftpConfig.setServerLanguageCode(serverLanguageCode);
		return ftpConfig;
	}

	/**
	 * 将ISO-8859-1编码转为 GBK
	 * 
	 * @param obj
	 * @return ""
	 * @throws Exception
	 */
	private static String encodingToGBK(Object obj) throws Exception {
		if (obj != null) {
			return new String(obj.toString().getBytes("iso-8859-1"), encoding);
		}
		return null;
	}

	/**
	 * 将 GBK编码转为ISO-8859-1
	 * 
	 * @param obj
	 * @return ""
	 * @throws Exception
	 */
	private static String encodingGBKToISO8859(Object obj) throws Exception {
		if (obj != null) {
			return new String(obj.toString().getBytes(encoding), "iso-8859-1");
		}
		return null;
	}

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		boolean success = false;
		try {
			java.text.SimpleDateFormat dateFormat = new java.text.SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
//			success = FtpUtil.uploadFile("D:\\ftp", "中文的.docx", "temp");
//			System.out.println(success);
			//
			// success = FtpUtil.uploadFile(new File("D:\\ftp\\abc.txt"),
			// "temp");
			// System.out.println(success);

			// success = FtpUtil.uploadDirectory("D:\\ftp", "temp");
			// System.out.println(success);

			System.out.println(dateFormat.format(new java.util.Date()));
			success = FtpUtil.downloadFile("d:\\", "test.zip",
					"temp");
			System.out.println(dateFormat.format(new java.util.Date()));
			System.out.println(success);

			// success = FtpUtil.downloadDirectory("d:\\ftp\\a2", "temp");
			// System.out.println(success);
		} catch (Exception e) {
			System.out.println(e.getMessage());
		}

	}

}
 

 

分享到:
评论

相关推荐

    java Ftp上传下载工具类

    使用Apache commons net组件实现ftp上传与下载功能

    java版ftp上传下载工具类

    Java版FTP上传下载工具类简化了与FTP服务器交互的过程,通过封装相关操作,使得开发者可以便捷地进行文件的上传和下载任务。 `FtpUtil.java` 文件是这个工具类的核心,它通常会包含以下关键组件: 1. **连接设置**...

    java写的FTP上传下载工具(支持多用户)

    Java编写的FTP上传下载工具是一种基于Java语言实现的文件传输应用程序,主要功能是与FTP(File Transfer Protocol)服务器进行交互,实现文件的上传和下载。这个工具特别之处在于它支持多用户登录,这意味着不同的...

    FTP上传下载工具

    在这个“FTP上传下载工具”中,开发者使用Java语言构建了一个功能强大的客户端应用,它能够实现文件和文件夹的上传与下载,并且带有进度显示,极大地提高了用户在处理大文件时的体验。 1. **Java FTP库**: 这个...

    java ftp上传工具包

    Java FTP上传工具包是一款专为Android平台设计的FTP客户端代码库,它允许开发者在Android应用中集成FTP文件传输功能,支持断点续传,提高了上传大文件时的效率和可靠性。这一工具包对于那些需要在移动设备上进行文件...

    java ftp上传 下载 文件压缩解压

    这篇博客“java ftp上传 下载 文件压缩解压”很可能是关于如何使用Java实现FTP文件上传、下载以及文件的压缩与解压功能。下面我们将深入探讨这些知识点。 首先,FTP上传和下载是Java中常见的任务,通常通过`java...

    使用java实现的linux和ftp服务器文件上传下载工具

    这是我使用java实现的linux和ftp服务器文件上传下载工具,需要电脑安装jdk8, 启动命令,java -jar linuxAndFtp.jar 启动成功后,浏览器访问:http://localhost:9999 服务器的账号密码通过服务器列表页面管理,添加的...

    java上传ftp服务器工具类

    java上传ftp服务器工具类,提供完成的方法,直接调用即可

    JAVA 操作FTP的工具类,上传,下载,删除功能都有了。

    首先,让我们详细了解一下FTP上传功能。在Java中,我们可以使用`FTPClient`类来实现文件的上传。我们需要创建一个`FTPClient`实例,然后连接到FTP服务器,通过`login()`方法登录。接着,设置数据类型为二进制(`...

    ftp上传下载工具类

    FTP上传下载工具类通常是指一个编程接口或代码库,为开发者提供便捷的FTP客户端功能,包括连接到FTP服务器、上传文件、下载文件以及管理远程目录等操作。 在开发中,我们可能遇到以下关键知识点: 1. FTP基本概念...

    java ftp 上传下载,代码。

    以上就是使用Java进行FTP上传和下载的基本步骤,结合Apache Commons Net库和WinFtp Server2.0.1,你可以创建一个完整的FTP客户端程序进行实践。在实际应用中,你可能还需要处理各种异常情况,如网络中断、文件权限...

    Java FTP文件上传下载

    在这个场景中,我们看到的"Java FTP文件上传下载"是一个具体的实现,它可能包含了一个自定义的工具类`FtpUtil.java`,以及一些依赖的库文件。 `FtpUtil.java`很可能是一个封装了FTP操作的类,包括连接FTP服务器、...

    java FTP 上传 下载 (中文 ) 文件

    以下是一个使用Apache Commons Net库进行FTP上传和下载的简单示例: 1. **FTP连接**: - 导入必要的库:`import org.apache.commons.net.ftp.FTP;` 和 `import org.apache.commons.net.ftp.FTPClient;` - 创建`...

    java ftp 上传 IIS 展示,代码+文档

    Java FTP(File Transfer...总的来说,Java FTP上传IIS的实现涉及到Java网络编程、FTP协议、可能的第三方库使用,以及良好的异常管理和资源管理实践。通过合理的工具类设计,可以创建出高效且易于维护的FTP客户端代码。

    java FTP上传工具类

    此文档包含几乎所有日常用到的java 对 ftp的操作方法,都可以直接进行调用使用。

    JAVA实现简单的对FTP上传与下载

    总的来说,使用Java实现FTP上传和下载涉及网络通信、文件操作和错误处理等多个方面的知识。通过"ftpLoadDown.jar"库,我们可以简化这个过程,使得开发者可以专注于业务逻辑,而无需关心底层的FTP协议细节。在实际...

    FTP工具类实现ftp上传下载

    采用java实现FTP文件的上传下载,包含文件以及文件夹上传下载,新建文件夹等基本相关操作,不会出现文件名的中文乱码,内含demo相关测试以及jar包,可直接导入使用,采用MyEclipse8.5,jdk1.6亲测无问题

    java写的ftp下载上传定时监控

    Java作为多平台支持的编程语言,提供了丰富的库和工具来实现FTP功能,包括下载、上传文件以及定时监控等操作。本篇文章将深入探讨如何使用Java进行FTP文件传输,并涉及自动解压和压缩的功能。 首先,让我们关注Java...

    java 实现ftp上传下载

    总结来说,Java实现FTP上传下载涉及连接管理、文件操作、多线程处理、异常处理等多个方面。使用Apache Commons Net库能简化这些操作,但正确地处理细节和异常情况仍然至关重要。通过理解和实践这些知识点,你将能够...

    java编写的ftp文件实时监控下载上传

    用java语言编写的ftp小工具,可以按指定时间监控ftp服务器,把服务器指定目录内新产生的文件或者文件夹下载到本地指定文件夹,下载后删除数据。 也可以监控本地文件夹,把文件夹内新产生的文件或者文件夹整体上传到...

Global site tag (gtag.js) - Google Analytics