import java.io.File;
import java.io.FileInputStream;
import org.apache.commons.net.ftp.FTP;
import org.apache.commons.net.ftp.FTPClient;
import org.junit.Test;public class FTPTest {
@Test
public void testFtpClient() throws Exception {
//创建一个FtpClient对象
FTPClient ftpClient = new FTPClient();
//创建ftp连接。默认是21端口
ftpClient.connect("localhost", 21);
//登录ftp服务器,使用用户名和密码
ftpClient.login("fengmingyue", "15*********");
//上传文件。
//读取本地文件
FileInputStream inputStream = new FileInputStream(new File("/Users/fengmingyue/Desktop/1946.jpg"));
//设置上传的路径
ftpClient.changeWorkingDirectory("/usr/local/Cellar/nginx/1.10.3/home/image");
//修改上传文件的格式
ftpClient.setFileType(FTP.BINARY_FILE_TYPE);
//第一个参数:服务器端文档名(即上传到服务器上的文件名)
//第二个参数:上传文档的inputStream
ftpClient.storeFile("1946777.jpg", inputStream);
//关闭连接
ftpClient.logout();
}
//使用工具类
@Test
public void testFtpUtil() throws Exception {
FileInputStream inputStream = new FileInputStream(new File("/Users/fengmingyue/Desktop/1946.jpg"));
FtpUtil.uploadFile("localhost", 21, "fengmingyue", "15*******", "/usr/local/Cellar/nginx/1.10.3/home/image", "/2015/09/04", "hello222.jpg", inputStream);
}
}

工具类:

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 org.apache.commons.net.ftp.FTP;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPFile;
import org.apache.commons.net.ftp.FTPReply; /**
* ftp上传下载工具类
*/
public class FtpUtil { /**
* Description: 向FTP服务器上传文件
* @param host FTP服务器hostname
* @param port FTP服务器端口
* @param username FTP登录账号
* @param password FTP登录密码
* @param basePath FTP服务器基础目录
* @param filePath FTP服务器文件存放路径。例如分日期存放:/2015/01/01。文件的路径为basePath+filePath
* @param filename 上传到FTP服务器上的文件名
* @param input 输入流
* @return 成功返回true,否则返回false
*/
public static boolean uploadFile(String host, int port, String username, String password, String basePath,
String filePath, String filename, InputStream input) {
boolean result = false;
FTPClient ftp = new FTPClient();
try {
int reply;
ftp.connect(host, port);// 连接FTP服务器
// 如果采用默认端口,可以使用ftp.connect(host)的方式直接连接FTP服务器
ftp.login(username, password);// 登录
reply = ftp.getReplyCode();
if (!FTPReply.isPositiveCompletion(reply)) {
ftp.disconnect();
return result;
}
//切换到上传目录
if (!ftp.changeWorkingDirectory(basePath+filePath)) {
//如果目录不存在创建目录
String[] dirs = filePath.split("/");
String tempPath = basePath;
for (String dir : dirs) {
if (null == dir || "".equals(dir)) continue;
tempPath += "/" + dir;
if (!ftp.changeWorkingDirectory(tempPath)) {
if (!ftp.makeDirectory(tempPath)) {
return result;
} else {
ftp.changeWorkingDirectory(tempPath);
}
}
}
}
//设置上传文件的类型为二进制类型
ftp.setFileType(FTP.BINARY_FILE_TYPE);
//上传文件
if (!ftp.storeFile(filename, input)) {
return result;
}
input.close();
ftp.logout();
result = true;
} catch (IOException e) {
e.printStackTrace();
} finally {
if (ftp.isConnected()) {
try {
ftp.disconnect();
} catch (IOException ioe) {
}
}
}
return result;
} /**
* Description: 从FTP服务器下载文件
* @param host FTP服务器hostname
* @param port FTP服务器端口
* @param username FTP登录账号
* @param password FTP登录密码
* @param remotePath FTP服务器上的相对路径
* @param fileName 要下载的文件名
* @param localPath 下载后保存到本地的路径
* @return
*/
public static boolean downloadFile(String host, int port, String username, String password, String remotePath,
String fileName, String localPath) {
boolean result = false;
FTPClient ftp = new FTPClient();
try {
int reply;
ftp.connect(host, port);
// 如果采用默认端口,可以使用ftp.connect(host)的方式直接连接FTP服务器
ftp.login(username, password);// 登录
reply = ftp.getReplyCode();
if (!FTPReply.isPositiveCompletion(reply)) {
ftp.disconnect();
return result;
}
ftp.changeWorkingDirectory(remotePath);// 转移到FTP服务器目录
FTPFile[] fs = ftp.listFiles();
for (FTPFile ff : fs) {
if (ff.getName().equals(fileName)) {
File localFile = new File(localPath + "/" + ff.getName()); OutputStream is = new FileOutputStream(localFile);
ftp.retrieveFile(ff.getName(), is);
is.close();
}
}
ftp.logout();
result = true;
} catch (IOException e) {
e.printStackTrace();
} finally {
if (ftp.isConnected()) {
try {
ftp.disconnect();
} catch (IOException ioe) {
}
}
}
return result;
}
}

FtpUtil

最新文章

  1. 【java】细说 JAVA中 标注 注解(annotation)
  2. 网络爬虫: 从allitebooks.com抓取书籍信息并从amazon.com抓取价格(1): 基础知识Beautiful Soup
  3. Hadoop源码编译过程
  4. Java知识积累2-StringReverse实现文字(单词)倒叙输出
  5. HTML5系列一(属性概述)
  6. Linux版MonoDevelop无法连接调试器的解决方案(Could not connet to the debugger)
  7. ubuntuPC机安装JLink驱动
  8. 一步一步学习Unity3d学习笔记系1.1
  9. html5刮刮卡
  10. java--简单排序算法
  11. android布局常用属性记录
  12. API例子:用Python驱动Firefox采集网页数据
  13. Android采访开发——2.通用Android基础笔试题
  14. Java——代码复用(组合和继承)
  15. 前后台数据交换,printwriter、jsonobject、jsonarray、ajax请求,数据交换
  16. JavaScrip相关知识总结
  17. As 400错
  18. ccf-棋局评估-20190304
  19. vue808
  20. 创意:Soap一款新型的触摸式家用智能路由器

热门文章

  1. zsh: command not found cnpm,gulp等命令在zsh终端上报错的问题
  2. JS 词法作用域 p2
  3. 【CDQ分治】[HNOI2010]城市建设
  4. Javascript、Jquery获取浏览器和屏幕各种高度宽度[mark]
  5. WOSA/XFS PTR Form解析库—头文件
  6. Android 开源库和项目 3
  7. 【Python】生成词云
  8. ecsop文件结构
  9. Apache2启动错误Could not reliably determine the server's fully qualified domain name
  10. 在 Azure 中管理 Windows 虚拟机的可用性