设为首页 收藏本站
查看: 932|回复: 0

[经验分享] Java FTP客户端代码(一)

[复制链接]

尚未签到

发表于 2016-6-9 09:35:53 | 显示全部楼层 |阅读模式
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.SocketException;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPReply;
import org.apache.log4j.Logger;
/**
* FTP客户端
*
* @author summersun_ym
* @version $Id: FTPClientTemplate.java 2010-11-22 上午12:54:47 $
*/
public class FTPClientTemplate {
//---------------------------------------------------------------------
// Instance data
//---------------------------------------------------------------------
/** logger */
protected final Logger log            = Logger.getLogger(getClass());
private String         host;
private int            port;
private String         username;
private String         password;
private boolean        binaryTransfer = true;
private boolean        passiveMode    = true;
private String         encoding       = "UTF-8";
private int            clientTimeout  = 3000;
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
public int getPort() {
return port;
}
public void setPort(int port) {
this.port = port;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public boolean isBinaryTransfer() {
return binaryTransfer;
}
public void setBinaryTransfer(boolean binaryTransfer) {
this.binaryTransfer = binaryTransfer;
}
public boolean isPassiveMode() {
return passiveMode;
}
public void setPassiveMode(boolean passiveMode) {
this.passiveMode = passiveMode;
}
public String getEncoding() {
return encoding;
}
public void setEncoding(String encoding) {
this.encoding = encoding;
}
public int getClientTimeout() {
return clientTimeout;
}
public void setClientTimeout(int clientTimeout) {
this.clientTimeout = clientTimeout;
}
//---------------------------------------------------------------------
// private method
//---------------------------------------------------------------------
/**
* 返回一个FTPClient实例
*
* @throws FTPClientException
*/
private FTPClient getFTPClient() throws FTPClientException {
FTPClient ftpClient = new FTPClient(); //构造一个FtpClient实例
ftpClient.setControlEncoding(encoding); //设置字符集
connect(ftpClient); //连接到ftp服务器
//设置为passive模式
if (passiveMode) {
ftpClient.enterLocalPassiveMode();
}
setFileType(ftpClient); //设置文件传输类型
try {
ftpClient.setSoTimeout(clientTimeout);
} catch (SocketException e) {
throw new FTPClientException("Set timeout error.", e);
}
return ftpClient;
}
/**
* 设置文件传输类型
*
* @throws FTPClientException
* @throws IOException
*/
private void setFileType(FTPClient ftpClient) throws FTPClientException {
try {
if (binaryTransfer) {
ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE);
} else {
ftpClient.setFileType(FTPClient.ASCII_FILE_TYPE);
}
} catch (IOException e) {
throw new FTPClientException("Could not to set file type.", e);
}
}
/**
* 连接到ftp服务器
*
* @param ftpClient
* @return 连接成功返回true,否则返回false
* @throws FTPClientException
*/
public boolean connect(FTPClient ftpClient) throws FTPClientException {
try {
ftpClient.connect(host, port);
// 连接后检测返回码来校验连接是否成功
int reply = ftpClient.getReplyCode();
if (FTPReply.isPositiveCompletion(reply)) {
//登陆到ftp服务器
if (ftpClient.login(username, password)) {
setFileType(ftpClient);
return true;
}
} else {
ftpClient.disconnect();
throw new FTPClientException("FTP server refused connection.");
}
} catch (IOException e) {
if (ftpClient.isConnected()) {
try {
ftpClient.disconnect(); //断开连接
} catch (IOException e1) {
throw new FTPClientException("Could not disconnect from server.", e);
}
}
throw new FTPClientException("Could not connect to server.", e);
}
return false;
}
/**
* 断开ftp连接
*
* @throws FTPClientException
*/
private void disconnect(FTPClient ftpClient) throws FTPClientException {
try {
ftpClient.logout();
if (ftpClient.isConnected()) {
ftpClient.disconnect();
}
} catch (IOException e) {
throw new FTPClientException("Could not disconnect from server.", e);
}
}
//---------------------------------------------------------------------
// public method
//---------------------------------------------------------------------
/**
* 上传一个本地文件到远程指定文件
*
* @param serverFile 服务器端文件名(包括完整路径)
* @param localFile 本地文件名(包括完整路径)
* @return 成功时,返回true,失败返回false
* @throws FTPClientException
*/
public boolean put(String serverFile, String localFile) throws FTPClientException {
return put(serverFile, localFile, false);
}
/**
* 上传一个本地文件到远程指定文件
*
* @param serverFile 服务器端文件名(包括完整路径)
* @param localFile 本地文件名(包括完整路径)
* @param delFile 成功后是否删除文件
* @return 成功时,返回true,失败返回false
* @throws FTPClientException
*/
public boolean put(String serverFile, String localFile, boolean delFile) throws FTPClientException {
FTPClient ftpClient = null;
InputStream input = null;
try {
ftpClient = getFTPClient();
// 处理传输
input = new FileInputStream(localFile);
ftpClient.storeFile(serverFile, input);
log.debug("put " + localFile);
input.close();
if (delFile) {
(new File(localFile)).delete();
}
log.debug("delete " + localFile);
return true;
} catch (FileNotFoundException e) {
throw new FTPClientException("local file not found.", e);
} catch (IOException e) {
throw new FTPClientException("Could not put file to server.", e);
} finally {
try {
if (input != null) {
input.close();
}
} catch (Exception e) {
throw new FTPClientException("Couldn't close FileInputStream.", e);
}
if (ftpClient != null) {
disconnect(ftpClient); //断开连接
}
}
}
/**
* 下载一个远程文件到本地的指定文件
*
* @param serverFile 服务器端文件名(包括完整路径)
* @param localFile 本地文件名(包括完整路径)
* @return 成功时,返回true,失败返回false
* @throws FTPClientException
*/
public boolean get(String serverFile, String localFile) throws FTPClientException {
return get(serverFile, localFile, false);
}
/**
* 下载一个远程文件到本地的指定文件
*
* @param serverFile 服务器端文件名(包括完整路径)
* @param localFile 本地文件名(包括完整路径)
* @return 成功时,返回true,失败返回false
* @throws FTPClientException
*/
public boolean get(String serverFile, String localFile, boolean delFile) throws FTPClientException {
OutputStream output = null;
try {
output = new FileOutputStream(localFile);
return get(serverFile, output, delFile);
} catch (FileNotFoundException e) {
throw new FTPClientException("local file not found.", e);
} finally {
try {
if (output != null) {
output.close();
}
} catch (IOException e) {
throw new FTPClientException("Couldn't close FileOutputStream.", e);
}
}
}
/**
* 下载一个远程文件到指定的流
* 处理完后记得关闭流
*
* @param serverFile
* @param output
* @return
* @throws FTPClientException
*/
public boolean get(String serverFile, OutputStream output) throws FTPClientException {
return get(serverFile, output, false);
}
/**
* 下载一个远程文件到指定的流
* 处理完后记得关闭流
*
* @param serverFile
* @param output
* @param delFile
* @return
* @throws FTPClientException
*/
public boolean get(String serverFile, OutputStream output, boolean delFile) throws FTPClientException {
FTPClient ftpClient = null;
try {
ftpClient = getFTPClient();
// 处理传输
ftpClient.retrieveFile(serverFile, output);
if (delFile) { // 删除远程文件
ftpClient.deleteFile(serverFile);
}
return true;
} catch (IOException e) {
throw new FTPClientException("Couldn't get file from server.", e);
} finally {
if (ftpClient != null) {
disconnect(ftpClient); //断开连接
}
}
}
/**
* 从ftp服务器上删除一个文件
*
* @param delFile
* @return
* @throws FTPClientException
*/
public boolean delete(String delFile) throws FTPClientException {
FTPClient ftpClient = null;
try {
ftpClient = getFTPClient();
ftpClient.deleteFile(delFile);
return true;
} catch (IOException e) {
throw new FTPClientException("Couldn't delete file from server.", e);
} finally {
if (ftpClient != null) {
disconnect(ftpClient); //断开连接
}
}
}
/**
* 批量删除
*
* @param delFiles
* @return
* @throws FTPClientException
*/
public boolean delete(String[] delFiles) throws FTPClientException {
FTPClient ftpClient = null;
try {
ftpClient = getFTPClient();
for (String s : delFiles) {
ftpClient.deleteFile(s);
}
return true;
} catch (IOException e) {
throw new FTPClientException("Couldn't delete file from server.", e);
} finally {
if (ftpClient != null) {
disconnect(ftpClient); //断开连接
}
}
}
/**
* 列出远程默认目录下所有的文件
*
* @return 远程默认目录下所有文件名的列表,目录不存在或者目录下没有文件时返回0长度的数组
* @throws FTPClientException
*/
public String[] listNames() throws FTPClientException {
return listNames(null);
}
/**
* 列出远程目录下所有的文件
*
* @param remotePath 远程目录名
* @return 远程目录下所有文件名的列表,目录不存在或者目录下没有文件时返回0长度的数组
* @throws FTPClientException
*/
public String[] listNames(String remotePath) throws FTPClientException {
FTPClient ftpClient = null;
try {
ftpClient = getFTPClient();
String[] listNames = ftpClient.listNames(remotePath);
return listNames;
} catch (IOException e) {
throw new FTPClientException("列出远程目录下所有的文件时出现异常", e);
} finally {
if (ftpClient != null) {
disconnect(ftpClient); //断开连接
}
}
}
public static void main(String[] args) throws FTPClientException {
FTPClientTemplate ftp = new FTPClientTemplate();
ftp.setHost("10.13.16.60");
ftp.setPort(2121);
ftp.setUsername("admin");
ftp.setPassword("admin");
ftp.setBinaryTransfer(true);
ftp.setPassiveMode(true);
ftp.setEncoding("utf-8");
//ftp.get("/test_0920.zip", "d:/test_0920.zip");
String[] aa = {"qqq/111.txt", "qqq/222.zip"};
ftp.delete(aa);
}
}

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-228092-1-1.html 上篇帖子: 【FTP】批处理向FTP上传具有指定属性的文件(增量备份) 下篇帖子: 利用Serv-U搭建FTP服务器
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表