配置maven
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>3.6</version>
</dependency>
工具類
package com.hk.utils;
import org.apache.commons.net.ftp.FTP;
import org.apache.commons.net.ftp.FTPClient;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
/**
* User: hk
* Date: 2017/8/10 下午4:31
* version: 1.0
*/
public class FTPUtil implements AutoCloseable {
private FTPClient ftpClient;
public FTPUtil(String serverIP, int port, String userName, String password) throws IOException {
ftpClient = new FTPClient();
ftpClient.connect(serverIP, port);
ftpClient.login(userName, password);
ftpClient.setBufferSize(1024);//設置上傳緩存大小
ftpClient.setControlEncoding("UTF-8");//設置編碼
ftpClient.setFileType(FTP.BINARY_FILE_TYPE);//設置文件類型
}
/**
* 下載ftp文件到本地
*
* @param remoteFileName 遠程文件名稱
* @param localFile 本地文件[包含路徑]
* @return true/false
* @throws IOException 異常
*/
public boolean downloadFile(String remoteFileName, String localFile) throws IOException {
boolean isSucc;
File outFileName = new File(localFile);
if (ftpClient == null)
throw new IOException("ftp server not login");
try (OutputStream outputStream = new FileOutputStream(outFileName)) {
isSucc = ftpClient.retrieveFile(remoteFileName, outputStream);
}
return isSucc;
}
/**
* 上傳文件制定目錄
*
* @param remoteFileName 遠程文件名
* @param localFile 本地文件[必須帶路徑]
* @return true/false
* @throws IOException 異常
*/
public boolean uploadFile(String remoteFileName, String localFile) throws IOException {
boolean isSucc;
try (InputStream inputStream = new FileInputStream(localFile)) {
if (ftpClient == null)
throw new IOException("ftp server not login");
isSucc = ftpClient.storeFile(remoteFileName, inputStream);
}
return isSucc;
}
/**
* 切換目錄
*
* @param path 創建目錄
* @return 創建標志
* @throws IOException 異常
*/
public boolean changeDirectory(String path) throws IOException {
return ftpClient.changeWorkingDirectory(path);
}
/**
* 創建目錄
*
* @param path 創建目錄
* @return 創建標志
* @throws IOException 異常
*/
public boolean createDirectory(String path) throws IOException {
return ftpClient.makeDirectory(path);
}
/**
* 自動關閉資源
*/
@Override
public void close() throws Exception {
if (ftpClient != null && ftpClient.isConnected()) {
ftpClient.logout();
ftpClient.disconnect();
}
}
}
使用方式
@Test
public void downloadFile() throws Exception {
try (FTPUtil ftpUtil = new FTPUtil("10.211.55.7",21,"ftpuser","123qwe")){
ftpUtil.downloadFile("2.txt","/Users/hk/Desktop/22.txt");
}catch (Exception e){
e.printStackTrace();
}
}
@Test
public void uploadFile() throws Exception {
try (FTPUtil ftpUtil = new FTPUtil("10.211.55.6",21,"ftpuser","123qwe")){
ftpUtil.uploadFile("2.txt","/Users/hk/Desktop/副本.txt");
}catch (Exception e){
e.printStackTrace();
}
}