public class FtpUtils {
// ftp对象
private FTPClient ftp;
private InputStream is = null;
private OutputStream os = null;
private FileOutputStream fos = null;
private FileInputStream fis = null;
/**
* 登录
* @param ip
* @param port
* @param name
* @param pwd
* @return
*/
public boolean login(String ip, int port, String name, String pwd) {
try {
ftp = new FTPClient();
ftp.connect(ip, port);
if (!ftp.login(name, pwd)) {
return false;
}
ftp.enterLocalPassiveMode();// 设置为被动模式(如上传文件夹成功,不能上传文件,注释这行,否则报错refused:connect )
ftp.setFileType(FTP.BINARY_FILE_TYPE);// 修改上传文件格式
} catch (IOException e) {
e.printStackTrace();
return false;
}
return true;
}
/**
*
* 获取ftp某一文件(路径)下的文件名字,用于查看文件列表
* @param ip
* @param port
* @param name
* @param pwd
* @param remotedir
* 远程地址目录
* @return
*/
public boolean getFilesName(String ip, int port, String name, String pwd, String remotedir) {
try {
if (!login(ip, port, name, pwd)) {
return false;
}
// 获取ftp里面,指定文件夹 里面的文件名字,存入数组中
FTPFile[] files = ftp.listFiles(remotedir);
// 打印出ftp里面,指定文件夹 里面的文件名字
for (int i = 0; i < files.length; i++) {
System.out.println(files[i].getName());
}
} catch (IOException e) {
e.printStackTrace();
return false;
} finally {
this.close();
}
return true;
}
/**
* ftp上传文件
* @param ip ip地址
* @param port 端口号
* @param name
* @param pwd
* @param remotepath远程地址文件路径
* @param localpath本地文件路径
* @return
*/
public boolean putFile(String ip, int port, String name, String pwd, String remotepath, String localpath) {
try {
if (!login(ip, port, name, pwd)) {
return false;
}
// ftp.changeWorkingDirectory(remotepath);
os = ftp.storeFileStream(remotepath);
fis = new FileInputStream(new File(localpath));
byte[] b = new byte[1024];
int len = 0;
while ((len = fis.read(b)) != -1) {
os.write(b, 0, len);
}
} catch (Exception e) {
e.printStackTrace();
return false;
} finally {
this.close();
}
return true;
}
/**
*
* ftp下载文件
* @param ip
* @param port
* @param name
* @param pwd
* @param remotepath
* 远程地址文件路径
* @param localpath
* 本地文件路径
* @return
*/
public boolean downloadFile(String ip, int port, String name,
String pwd, String remotepath, String localpath) {
try {
if (!login(ip, port, name, pwd)) {
return false;
}
ftp.setFileTransferMode(FTP.STREAM_TRANSFER_MODE); /// 传输文件为流的形式
is = ftp.retrieveFileStream(remotepath);
fos = new FileOutputStream(new File(localpath));
//加了一个写的操作
byte[] b = new byte[1024];
int len = 0;
while ((len = is.read(b)) != -1) {
fos.write(b, 0, len);
}
ftp.logout();
} catch (IOException e) {
e.printStackTrace();
return false;
} finally {
this.close();
}
return true;
}
private void close() {
if (ftp.isConnected()) {
try {
ftp.disconnect();
} catch (IOException e) {
}
}
if (is != null) {
try {
is.close();
} catch (IOException e) {
}
}
if (os != null) {
try {
os.close();
} catch (IOException e) {
}
}
if (fis != null) {
try {
fis.close();
} catch (IOException e) {
}
}
if (fos != null) {
try {
fos.close();
} catch (IOException e) {
}
}
}
}
ftp上传下载工具类(备注:从传输速度和传输质量上讲,贼好用)
最新推荐文章于 2022-10-25 14:26:59 发布