通过客户给的linux的ftp下载文件,到指定的请求端,注意编码问题
作者:互联网
下载文件的工具类,看附件
注意点:
1、代码的第63行: ftp.setControlEncoding("UTF-8"); //Linux设置的编码,如果不清楚,要找客户问下,他们设置的编码是什么
2、代码的第81行: ftp.retrieveFile(new String(ff.getName().getBytes("UTF-8"), "ISO-8859-1"), is); //下载文件的时候,要转成unicode,否则,下载不了。
另外,Linux的ftp可以设置时间限制的,因为,远程看问题的时候,已经下班比较久了,然后调试发现,原来可以的,后面直接读取不到文件了,还以为哪里出了问题,后面才明白,是ftp设置了时间限制,
package com.sipm.weihuzu.action;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.nio.charset.Charset;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPFile;
import org.apache.commons.net.ftp.FTPReply;
/**
* 工具类
* @author
*
*/
public class SipmUtil {
/**
* 上传文件
* @param url FTP服务器地址
* @param port FTP服务器端口
* @param username FTP登录账号
* @param password FTP登录密码
* @param remotePath FTP服务器上的相对路径
* @param fileName 要下载的文件名
* @param localPath 下载后保存到本地的路径
* @return
*/
public static boolean downFile(
String url, //FTP服务器hostname
int port,//FTP服务器端口
String username, //FTP登录账号
String password, //FTP登录密码
String remotePath,//FTP服务器上的相对路径
String fileName,//要下载的文件名
String localPath//下载后保存到本地的路径
) {
File path = new File(localPath);
if (!path.exists()) {
path.mkdir();
}
boolean success = false;
FTPClient ftp = new FTPClient();
try {
int reply;
ftp.connect(url);
//如果采用默认端口,可以使用ftp.connect(url)的方式直接连接FTP服务器
boolean test=ftp.login(username, password);//登录
if(test){
System.out.println("--------------登陆成功--------------------");
}
reply = ftp.getReplyCode();
if (!FTPReply.isPositiveCompletion(reply)) {
ftp.disconnect();
return success;
}
ftp.setFileType(FTPClient.BINARY_FILE_TYPE);
ftp.setControlEncoding("UTF-8");
if(remotePath.contains("/")){
remotePath=remotePath.substring(0,remotePath.lastIndexOf("/"))+"/";
}
System.out.println(remotePath+"-----地址2--------------");
ftp.changeWorkingDirectory(remotePath);//转移到FTP服务器目录
ftp.enterLocalPassiveMode();
FTPFile[] fs = ftp.listFiles();
System.out.println(fileName+"--------------要下载的文件名称--------------------");
for(FTPFile ff:fs){
System.out.println(ff.getName()+"--------------文件列表---转码前-----------------");
String dname = ff.getName();
System.out.println(dname+"-转码后--------------------");
if(dname.equals(fileName)){
File localFile = new File(localPath+"\\"+dname);
System.out.println(localPath+"\\"+ff.getName()+"--------------路径--------------------");
OutputStream is = new FileOutputStream(localFile);
//解决中文文件名
ftp.retrieveFile(new String(ff.getName().getBytes("UTF-8"), "ISO-8859-1"), is);
is.close();
}
}
ftp.logout();
success = true;
} catch (IOException e) {
e.printStackTrace();
} finally {
if (ftp.isConnected()) {
try {
ftp.disconnect();
} catch (IOException ioe) {
}
}
}
return success;
}
}
标签:FTP,编码,String,ftp,param,remotePath,linux,import 来源: https://blog.csdn.net/fenghai110119/article/details/117260534