ftp上传下载工具类(备注:从传输速度和传输质量上讲,贼好用)

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) {
			}

		}

	}

	
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

弱即弱离

您的鼓励是对我最大的支持

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值