`
chunchong
  • 浏览: 38644 次
  • 性别: Icon_minigender_1
  • 来自: 济南
社区版块
存档分类
最新评论

java操作FTP

    博客分类:
  • Ftp
 
阅读更多

通过java与ftp服务器进行交互,费话少说代码如下

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.TimeZone;

import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPClientConfig;
import org.apache.commons.net.ftp.FTPReply;
import org.apache.log4j.Logger;

import com.sdjxd.commons.AppConfig;

public class FileUpLoad {
	private FTPClient ftpClient;// ftp客户端
	private String strIp;// ftp服务器地址
	private int intPort;// ftp端口
	private String user;// ftp用户
	private String password;// ftp密码
	private boolean isLogin = false;// 是否已登录
	private static Logger logger = Logger.getLogger(FileUpLoad.class);

	/***************************************************************************
	 * 
	 */
	public FileUpLoad() {
		this.strIp = AppConfig.getConfig("ftpServerIp");
		this.intPort = Integer.valueOf(AppConfig.getConfig("ftpServerPort"));
		this.user = AppConfig.getConfig("ftpUser");
		this.password = AppConfig.getConfig("ftpPassword");
		this.ftpClient = new FTPClient();
	}

	/**
	 * @return 判断是否登入成功
	 */
	public boolean ftpLogin() {
		boolean isLogin = false;
		FTPClientConfig ftpClientConfig = new FTPClientConfig();
		ftpClientConfig.setServerTimeZoneId(TimeZone.getDefault().getID());
		this.ftpClient.setControlEncoding("GBK");
		this.ftpClient.configure(ftpClientConfig);
		try {
			if (this.intPort > 0) {
				this.ftpClient.connect(this.strIp, this.intPort);
			} else {
				this.ftpClient.connect(this.strIp);
			}
			// FTP服务器连接回答
			int reply = this.ftpClient.getReplyCode();
			if (!FTPReply.isPositiveCompletion(reply)) {
				this.ftpClient.disconnect();
				logger.error("登录FTP服务失败!");
				return isLogin;
			}
			this.ftpClient.login(this.user, this.password);
			// 设置传输协议
			this.ftpClient.enterLocalPassiveMode();
			// 以二进制文件的形式上传,解决上传后文件大小改变问题
			this.ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE);
			logger.info("恭喜" + this.user + "成功登陆FTP服务器");
			isLogin = true;
		} catch (Exception e) {
			e.printStackTrace();
			logger.error(this.user + "登录FTP服务失败!" + e.getMessage());
		}
		this.ftpClient.setBufferSize(1024 * 2);
		this.ftpClient.setDataTimeout(30 * 1000);
		this.isLogin = isLogin;
		return isLogin;
	}

	/***************************************************************************
	 * 
	 * 退出关闭服务器链接
	 */
	public void ftpLogOut() {
		if (null != this.ftpClient && this.ftpClient.isConnected()) {
			try {
				boolean reuslt = this.ftpClient.logout();// 退出FTP服务器
				if (reuslt) {
					logger.info("成功退出服务器");
				}
			} catch (IOException e) {
				e.printStackTrace();
				logger.warn("退出FTP服务器异常!" + e.getMessage());
			} finally {
				try {
					this.ftpClient.disconnect();// 关闭FTP服务器的连接
				} catch (IOException e) {
					e.printStackTrace();
					logger.warn("关闭FTP服务器的连接异常!");
				}
			}
		}
	}

	/***************************************************************************
	 * 上传Ftp文件
	 * 
	 * @param localFile
	 *            本地文件
	 * @param ftpServerDir
	 *            上传服务器路径 - 应该以/结束
	 */
	public boolean uploadFile(File localFile, String ftpServerDir) {
		// 如果服务没有连接,先连接服务器
		if (!this.isLogin) {
			ftpLogin();
		}
		BufferedInputStream inStream = null;
		boolean success = false;
		try {
			boolean dirExists = this.ftpClient
					.changeWorkingDirectory(ftpServerDir);// 改变工作路径
			//检查是否存在,如果不存在则创建它
			if (dirExists) {
				logger.debug("更改服务器目录:" + ftpServerDir);
			} else {
				if (this.ftpClient.makeDirectory(ftpServerDir)) {
					logger.info(ftpServerDir + "目录创建成功!");
					this.ftpClient.changeWorkingDirectory(ftpServerDir);// 改变工作路径
				} else {
					logger.info(ftpServerDir + "服务器目录已存在,或没有创建权限,或其它原因没有创建成功!");
				}
			}
			inStream = new BufferedInputStream(new FileInputStream(localFile));
			logger.info(localFile.getName() + "开始上传.....");
			success = this.ftpClient.storeFile(localFile.getName(), inStream);
			if (success == true) {
				logger.info(localFile.getName() + "上传成功");
				return success;
			}
		} catch (FileNotFoundException e) {
			e.printStackTrace();
			logger.error(localFile + "未找到");
		} catch (IOException e) {
			e.printStackTrace();
		} finally {
			if (inStream != null) {
				try {
					inStream.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
		}
		return success;
	}

	/***************************************************************************
	 * 下载文件
	 * 
	 * @param remoteFileName
	 *            待下载文件名称
	 * @param localDires
	 *            下载到当地那个路径下
	 * @param remoteDownLoadPath
	 *            remoteFileName所在的路径
	 */

	public boolean downloadFile(String remoteFileName, String localDires,
			String remoteDownLoadPath) {
		// 如果服务没有连接,先连接服务器
		if (!this.isLogin) {
			ftpLogin();
		}
		String strFilePath = localDires + remoteFileName;
		BufferedOutputStream outStream = null;
		boolean success = false;
		try {
			this.ftpClient.changeWorkingDirectory(remoteDownLoadPath);
			outStream = new BufferedOutputStream(new FileOutputStream(
					strFilePath));
			logger.info(remoteFileName + "开始下载....");
			success = this.ftpClient.retrieveFile(remoteFileName, outStream);
			if (success == true) {
				logger.info(remoteFileName + "成功下载到" + strFilePath);
				return success;
			}
		} catch (Exception e) {
			e.printStackTrace();
			logger.error(remoteFileName + "下载失败");
		} finally {
			if (null != outStream) {
				try {
					outStream.flush();
					outStream.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
		}
		if (success == false) {
			logger.error(remoteFileName + "下载失败!!!");
		}
		return success;
	}

}

 

分享到:
评论

相关推荐

    java操作FTP各种例子

    Java操作FTP(File Transfer Protocol)是Java编程中的一项重要技能,尤其在开发涉及文件上传、下载、删除等网络操作的应用时。以下将详细介绍如何使用Java进行FTP的各种操作,并结合具体的代码示例进行讲解。 首先...

    java操作ftp代码.rar_Java操作FTP_ftg客户端_ftp java_java ftp

    Java操作FTP服务器,连接FTP,上传文件,删除文件,下载文件

    JAVA操作FTP文件服务器上传与下载文件

    以上代码展示了Java操作FTP服务器的基本流程。实际开发中,还需要处理各种可能的异常,确保错误处理和资源管理的完善。此外,可以考虑使用`FTPESession`进行安全的FTP(FTPS)连接,以提高数据传输的安全性。在处理...

    Java操作FTP源码大全

    Java操作FTP源码大全是一个全面的Java开发资源集合,它为开发者提供了在Java环境中与FTP(File Transfer Protocol)服务器交互的实例代码。FTP是一种广泛使用的网络协议,用于在客户端和服务器之间传输文件。通过...

    java操作FTP.pdf

    综上所述,Java操作FTP涉及网络编程、文件系统操作、字符串处理以及I/O流操作等多个方面。为了提高代码的可维护性和安全性,建议遵循Java的最佳实践,如使用标准的FTP客户端库、处理异常、存储敏感信息的安全方式等...

    java操作FTP工具类

    java操作FTP工具类:实现基本断点上传下载、实现上传下载进度汇报、实现中文目录创建及中文文件创建,添加对于中文的支持

    java操作FTP[借鉴].pdf

    Java 操作 FTP(FTP 文件传输协议)是一种在 Java 应用程序中与远程 FTP 服务器交互的方法,允许用户上传、下载、列出目录等操作。在提供的代码中,我们看到一个名为 `Ftp` 的类,它封装了一些基本的 FTP 功能。这个...

    编程语言java操作FTP.pdf

    综上所述,Java操作FTP服务器的正确做法应包括使用稳定的API,避免硬编码敏感信息,进行适当的错误处理,并确保良好的资源管理。对于具体实现,可以参考Apache Commons Net库,它提供了完整的FTP客户端功能,包括...

    java操作ftp下载

    在Java编程中,FTP(File Transfer Protocol)是一个用于在计算机之间传输文件的标准协议。通过FTP,我们可以实现远程服务器上的文件上传、下载以及管理等操作。本教程将详细讲解如何使用Java来实现FTP文件的下载...

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

    为了方便开发者操作FTP服务器,Java提供了一些内置的库,如`java.net.FTPSClient`和`org.apache.commons.net.ftp.FTPClient`。在这个场景中,我们有一个工具类,它包含了FTP的上传、下载和删除功能,这对于任何需要...

    java ftp 服务器

    一个简单的demo,适合初学者,java语言使用第三方API,进程FTP上传下载的demo

    Java检测指定FTP目录下的文件名

    本示例简单的实现了一个用Java代码来访问FTP,根据指定FTP的目录,访问这个路径下面的Ftp的文件,取出这个目录下面所有文件的文件名保存到一个Map中,最后根据系统时间和文件生成时间做对比,得出该日是否正确生成...

    自己写的用Java操作FTP的上传下载等

    本文将深入探讨如何使用Java来实现FTP的上传、下载和其他相关操作。 首先,Java通过`java.net`和`javax.net`包提供了对FTP的支持,但这些API直接使用起来较为复杂,因此通常我们会选择使用第三方库,如Apache ...

    java从ftp上传下载文件

    Java操作FTP和SFTP下载与上传文件是网络编程中常见的任务,主要涉及到远程文件系统的访问。FTP(File Transfer Protocol)是一种用于在网络上进行文件传输的标准协议,而SFTP(Secure File Transfer Protocol)则是...

    java操作ftp下载文件示例

    Java操作FTP下载文件是通过Java的`org.apache.commons.net.ftp`库实现的,这个库提供了FTP客户端的功能,可以连接到FTP服务器、登录、浏览目录、上传和下载文件等。以下是一个详细的步骤解释: 1. **创建FTPClient...

    java实现FTP服务器

    ### Java实现FTP服务器的关键知识点 在探讨如何使用Java实现FTP(File Transfer Protocol)服务器之前,我们首先需要理解FTP的基本概念及其工作原理。FTP是一种用于在网络上进行文件传输的标准协议,它支持上传...

    java实现ftp的所有操作

    本项目提供了一套完整的Java实现FTP操作的代码示例,包括上传、下载、删除服务器上的指定文件以及断点续传功能。以下是对这些功能的详细解释: 1. **FTP连接与登录**: 在进行任何FTP操作之前,首先需要建立一个...

    java common FTPClient ftp sftp

    ②快速知道如何使用java操作ftp文件,避免踩坑,多种操作方式。③ftp文件到底可如何操作。如何获取,如何上传。 阅读建议:此资源以让工作中的同学快速学习使用,直接复制代码即可直接使用,不需要太多改造,当然也...

    JAVA获取FTP文件列表

    本文档将详细介绍一个基于Java的实用工具类`FtpClientUtil`,该类提供了一系列功能来与FTP服务器交互,包括连接到服务器、上传文件、下载文件、获取文件列表、删除文件和目录以及关闭连接等操作。 #### 二、`...

Global site tag (gtag.js) - Google Analytics