Ftp文件上传

前段时间项目中用到的FTP文件上传,自己谢了一个基于FTPClient的FTP文件上传函数

用的到jar包的下载地址:commons-net-1.4.1.jar

FTP文件上传过程中需要注意,FTP支持二级制和ASCII码的文件上传,需要根据需要指定上传类型(一般二进制的没什么问题),不然会出现上传文件大小不一致或者损坏的问题。

具体的实现:

/**
	 * FTPClient 上传文件到 ftp
	 * ip ftp服务器ip
	 * port 端口号
	 * username 用户名
	 * password  登录密码
	 * path  存储路径
	 * filename  存储文件名称
	 * input  上传文件的输入流 
	 */ 
	boolean uploadFile(String ip, int port, String username, String password,
			String path, String filename, InputStream input)
	{
		System.out.println("[发送文件到FTP]");
		boolean success = false;
		FTPClient ftp = new FTPClient();
		try
		{
			int reply;
			ftp.connect(ip, port);// 连接FTP服务器
			ftp.login(username, password);// 登录
			reply = ftp.getReplyCode();
			ftp.setFileType(FTPClient.BINARY_FILE_TYPE); // 文件上传方式
			ftp.enterLocalPassiveMode();//ftp server 开通一个端口进行数据传输
			if (!FTPReply.isPositiveCompletion(reply))
			{
				ftp.disconnect();
				return success;
			}
			ftp.makeDirectory(path);
			ftp.changeWorkingDirectory(path);
			ftp.setRemoteVerificationEnabled(false);

			System.out.println("开始发送文件" + filename + "到FTP");
			success = ftp.storeFile(filename, input);
		} catch (IOException e)
		{
			System.out.println("[文件发送失败]");
			e.printStackTrace();
		} finally
		{
			if (ftp.isConnected())
			{
				try
				{
					input.close();
					ftp.logout();
					ftp.disconnect();
				} catch (IOException ioe)
				{
					ioe.printStackTrace();
				}
			}
		}
		return success;
	}


希望对大家有帮助。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值