通過FTP交換資料方式上傳下載
阿新 • • 發佈:2018-12-12
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Vector;
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;
public class FtpUtil {
public static boolean uploadFile(String url,// FTP伺服器hostname
int port,// FTP伺服器埠
String username, // FTP登入賬號
String password, // FTP登入密碼
String path, // FTP伺服器儲存目錄
String filename, // 上傳到FTP伺服器上的檔名
InputStream input // 輸入流
) {
boolean success = false;
FTPClient ftp = new FTPClient();
try {
int reply;
ftp.connect(url, port);// 連線FTP伺服器
// 如果採用預設埠,可以使用ftp.connect(url)的方式直接連線FTP伺服器
ftp.login(username, password);// 登入
reply = ftp.getReplyCode();
if (!FTPReply.isPositiveCompletion(reply)) {
ftp.disconnect();
return success;
}
ftp.enterLocalPassiveMode();
ftp.changeWorkingDirectory(path);
ftp.setFileType(FTP.ASCII_FILE_TYPE);
String FtpFilename = new String(filename.getBytes("GBK"),
"iso-8859-1");
boolean result = ftp.storeFile(FtpFilename, input);
input.close();
ftp.logout();
success = true;
} catch (IOException e) {
e.printStackTrace();
} finally {
if (ftp.isConnected()) {
try {
ftp.disconnect();
} catch (IOException ioe) {
}
}
}
return success;
}
/**
* Description: 從FTP伺服器下載檔案
*
* @Version1.0
* @param url
* FTP伺服器hostname
* @param port
* FTP伺服器埠
* @param username
* FTP登入賬號
* @param password
* FTP登入密碼
* @param remotePath
* FTP伺服器上的相對路徑
* @param fileName
* 要下載的檔名
* @param localPath
* 下載後儲存到本地的路徑
* @return
*/
public static boolean downFile(String url, // FTP伺服器
int port,// FTP伺服器埠
String username, // FTP登入賬號
String password, // FTP登入密碼
String remotePath,// FTP伺服器上的相對路徑
String fileName,// 要下載的檔名
String localPath// 下載後儲存到本地的路徑
) {
boolean success = false;
FTPClient ftp = new FTPClient();
try {
int reply;
ftp.connect(url, port);
ftp.enterLocalPassiveMode();
// 如果採用預設埠,可以使用ftp.connect(url)的方式直接連線FTP伺服器
ftp.login(username, password);// 登入
reply = ftp.getReplyCode();
if (!FTPReply.isPositiveCompletion(reply)) {
ftp.disconnect();
return success;
}
ftp.changeWorkingDirectory(remotePath);// 轉移到FTP伺服器目錄
FTPFile[] fs = null;
String[] names = null;
if (ftp.listFiles() != null) {
fs = ftp.listFiles();
}
if (ftp.listNames().length > 0) {
names = ftp.listNames();
}
if (fs != null && fs.length > 0) {
for (FTPFile ff : fs) {
String FtpFilename = new String(ff.getName().getBytes(
"iso-8859-1"), "GBK");
if (FtpFilename.equals(fileName)) {
File localFile = new File(localPath + "/" + FtpFilename);
if (!localFile.exists()) {
OutputStream is = new FileOutputStream(localFile);
boolean result = ftp.retrieveFile(ff.getName(), is);
is.close();
}
}
}
} else {
if (names != null) {
for (int i = 0, j = names.length; i < j; i++) {
if (names[i].equals(fileName)) {
File localFile = new File(localPath + "/"
+ names[i]);
if (!localFile.exists()) {
OutputStream is = new FileOutputStream(
localFile);
boolean result = ftp.retrieveFile(names[i], is);
is.close();
}
}
}
} else {
ftp.logout();
success = true;
return success;
}
}
ftp.logout();
success = true;
} catch (IOException e) {
e.printStackTrace();
} finally {
if (ftp.isConnected()) {
try {
ftp.disconnect();
} catch (IOException ioe) {
}
}
}
return success;
}
/**
* Description: 從FTP伺服器刪除檔案
*
* @Version1.0
* @param url
* FTP伺服器hostname
* @param port
* FTP伺服器埠
* @param username
* FTP登入賬號
* @param password
* FTP登入密碼
* @param remotePath
* FTP伺服器上的相對路徑
* @param fileName
* 要下載的檔名
* @return
*/
public static boolean deleteFile(String url, // FTP伺服器
int port,// FTP伺服器埠
String username, // FTP登入賬號
String password, // FTP登入密碼
String remotePath,// FTP伺服器上的相對路徑
String fileName// 要下載的檔名
) {
boolean success = false;
FTPClient ftp = new FTPClient();
try {
int reply;
ftp.connect(url, port);
// 如果採用預設埠,可以使用ftp.connect(url)的方式直接連線FTP伺服器
ftp.enterLocalPassiveMode();
ftp.login(username, password);// 登入
reply = ftp.getReplyCode();
if (!FTPReply.isPositiveCompletion(reply)) {
ftp.disconnect();
return success;
}
ftp.changeWorkingDirectory(remotePath);// 轉移到FTP伺服器目錄
FTPFile[] fs = ftp.listFiles();
String[] names = ftp.listNames();
if (fs != null && fs.length > 0) {
for (FTPFile ff : fs) {
String FtpFilename = new String(ff.getName().getBytes(
"iso-8859-1"), "GBK");
if (FtpFilename.equals(fileName)) {
ftp.deleteFile(FtpFilename);
}
}
} else {
if (names != null) {
// System.getProperties().getProperty("os.name").toUpperCase().startsWith("WIN");
for (int i = 0, j = names.length; i < j; i++) {
if (names[i].equals(fileName)) {
ftp.deleteFile(names[i]);
}
}
} else {
ftp.logout();
success = true;
return success;
}
}
ftp.logout();
success = true;
} catch (IOException e) {
e.printStackTrace();
} finally {
if (ftp.isConnected()) {
try {
ftp.disconnect();
} catch (IOException ioe) {
}
}
}
return success;
}
/**
* Description: 從FTP伺服器下載檔案,上傳到ftp伺服器
*
* @Version1.0
* @param url
* FTP伺服器hostname
* @param port
* FTP伺服器埠
* @param username
* FTP登入賬號
* @param password
* FTP登入密碼
* @param remotePath
* FTP伺服器上的相對路徑
* @param fileName
* 要下載的檔名
* @param localPath
* 下載後儲存到本地的路徑
* @return
*/
public static boolean downuploadFile(String url, // 下載FTP伺服器
int port,// 下載FTP伺服器埠
String username, // 下載FTP登入賬號
String password, // 下載FTP登入密碼
String remotePath,// 下載FTP伺服器上的相對路徑
String fileName,// 要下載的檔名
String urlup,// 上傳FTP伺服器hostname
int portup,// 上傳FTP伺服器埠
String usernameup, // 上傳FTP登入賬號
String passwordup, // 上傳FTP登入密碼
String pathup, // 上傳FTP伺服器儲存目錄
String filenameup // 上傳到FTP伺服器上的檔名
) {
boolean success = false;
FTPClient ftp = new FTPClient();
try {
int reply;
ftp.connect(url, port);
ftp.enterLocalPassiveMode();
// 如果採用預設埠,可以使用ftp.connect(url)的方式直接連線FTP伺服器
ftp.login(username, password);// 登入
reply = ftp.getReplyCode();
if (!FTPReply.isPositiveCompletion(reply)) {
ftp.disconnect();
return success;
}
ftp.changeWorkingDirectory(remotePath);// 轉移到FTP伺服器目錄
FTPFile[] fs = null;
String[] names = null;
if (ftp.listFiles() != null) {
fs = ftp.listFiles();
}
if (ftp.listNames().length > 0) {
names = ftp.listNames();
}
if (fs != null && fs.length > 0) {
for (FTPFile ff : fs) {
String FtpFilename = new String(ff.getName().getBytes(
"iso-8859-1"), "GBK");
if (FtpFilename.equals(fileName)) {
InputStream input=ftp.retrieveFileStream(fileName);
int size=input.available();
if(size>0){
Boolean result = FtpUtil.uploadFile(urlup,
portup, usernameup,
passwordup, pathup, filenameup,
input);
}
}
}
} else {
if (names != null) {
for (int i = 0, j = names.length; i < j; i++) {
if (names[i].equals(fileName)) {
InputStream input=ftp.retrieveFileStream(fileName);
int size=input.available();
if(size>0){
Boolean result = FtpUtil.uploadFile(urlup,
portup, usernameup,
passwordup, pathup, filenameup,
input);
}
}
}
} else {
ftp.logout();
success = true;
return success;
}
}
ftp.logout();
success = true;
} catch (IOException e) {
e.printStackTrace();
} finally {
if (ftp.isConnected()) {
try {
ftp.disconnect();
} catch (IOException ioe) {
}
}
}
return success;
}
public static void main(String[] args) throws Exception {
// 從ftp下載檔案
// Boolean result = FtpUtil.downFile("192.xxx.xxx.01",
// 21," [email protected]",
// "qaz041366","/ftp", "log.txt",
// "E:/iso/");
// File file = new File("E:\\iso\\xx.txt");
// if (file.exists()) {
// return;
// }
//本地上傳到FTP伺服器
// Boolean result = FtpUtil.uploadFile("192.xxx.xxx.01",
// 21, "[email protected]",
// "qaz0413xx", "/ftp", "xx.log",
// (InputStream) (new FileInputStream(new File("E:\\iso\\xx.log"))));
// if (!result) {
// // file.delete();
// }
//從一個ftp下載並上傳到另一個
Boolean result = FtpUtil.downuploadFile("192.xxx.xxx.01",
21, " [email protected]",
"qaz041366", "/ftp", "gioi_log.log","192.xxx.xxx.02",
21, "[email protected]",
"qaz041366", "/ftp", "xx.log");
}
}