FTP服务器的上传视频和下载视频

FTP服务器的上传视频和下载视频

当前工具类,只支持默认下载,无法自定义选择保存地址
下一篇关于自定义保存路径


import java.io.*;
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;
/**
 * 
 * ftp上传下载工具类
 * @author qingrui
 *
 */

public class FtpUtil {

/**
     * Description: 向FTP服务器上传文件
     * @param host FTP服务器hostname
     * @param port FTP服务器端口
     * @param username FTP登录账号
     * @param password FTP登录密码
     * @param basePath FTP服务器基础目录
     * @param filePath FTP服务器文件存放路径。例如分日期存放:/2015/01/01。文件的路径为basePath+filePath
     * @param filename 上传到FTP服务器上的文件名
     * @param input 输入流
     * @return 成功返回true,否则返回false
     */
       public static boolean uploadFile(String host, int port, String username, String password, String basePath,
                                     String filePath, String filename, InputStream input) {
                boolean result = false;
	       FTPClient ftp = new FTPClient();
	        try {
	            int reply;
	            ftp.setControlEncoding("UTF-8");
	            ftp.connect(host, port);// 连接FTP服务器
	            // 如果采用默认端口,可以使用ftp.connect(host)的方式直接连接FTP服务器
	            ftp.login(username, password);// 登录
	            reply = ftp.getReplyCode();
	            System.out.println(reply);
	            if (!FTPReply.isPositiveCompletion(reply)) {
	                ftp.disconnect();
	                return result;
	            }
	         //切换到上传目录
            if (!ftp.changeWorkingDirectory(basePath+filePath)) {
                //如果目录不存在创建目录
                String[] dirs = filePath.split("/");
                String tempPath = basePath;
                for (String dir : dirs) {
                    if (null == dir || "".equals(dir)) continue;
                    tempPath += "/" + dir;
                    if (!ftp.changeWorkingDirectory(tempPath)) {
                        if (!ftp.makeDirectory(tempPath)) {
                            return result;
                        } else {
                            ftp.changeWorkingDirectory(tempPath);
                        }
                    }
                }
            }     
            //为了加大上传文件速度,将InputStream转成BufferInputStream
            BufferedInputStream  in=new BufferedInputStream(input);
            //加大缓存区
            ftp.setBufferSize(1024*1024);
            //设置上传文件的类型为二进制类型
            ftp.setFileType(FTP.BINARY_FILE_TYPE);
            //上传文件
            ftp.enterLocalPassiveMode();
            if (!ftp.storeFile(filename, in)) {
                return result;
            }
            in.close();
            ftp.logout();
            result = true;
        } catch (IOException e) {
            e.printStackTrace();
        } finally {                        
	     	if (ftp.isConnected()) {
	                try {
	                    ftp.disconnect();
	                } catch (IOException ioe) {
	                }
	            }
	        }
	        return result;
    }



 /**
     * Description: 从FTP服务器下载文件
     * @param host FTP服务器hostname
     * @param port FTP服务器端口
     * @param username FTP登录账号
     * @param password FTP登录密码
     * @param remotePath FTP服务器上的相对路径
     * @param fileName 要下载的文件名
     * @param localPath 下载后保存到本地的路径
     * @return
     */
 public static boolean downloadFile(String host, int port, String username, String password, String remotePath,
                                       String fileName) {
            boolean result = false;
        FTPClient ftp = new FTPClient();
        try {
            int reply;
            ftp.setControlEncoding("UTF-8");
            ftp.connect(host, port);
            // 如果采用默认端口,可以使用ftp.connect(host)的方式直接连接FTP服务器
            ftp.login(username, password);// 登录
            reply = ftp.getReplyCode();
            if (!FTPReply.isPositiveCompletion(reply)) {
                ftp.disconnect();
                return result;
            }
	 ftp.changeWorkingDirectory(remotePath);// 转移到FTP服务器目录
            FTPFile[] fs = ftp.listFiles();
	for (FTPFile ff : fs) {
                if (ff.getName().equals(fileName)) {
                    File localFile = new File("/" + ff.getName());
                    //     File localFile = new File(localPath + "/" + ff.getName());
                     OutputStream is = new FileOutputStream(localFile);
                    ftp.retrieveFile(ff.getName(), is);
                    is.close();
                }
            }
	ftp.logout();
            result = true;
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
	        if (ftp.isConnected()) {
	                try {
	                    ftp.disconnect();
	                } catch (IOException ioe) {
	                }
	            }
	  }
        return result;
    }

 /**
    *	测试
     */
public static void main(String[] args) {
        try {
            FileInputStream in=new FileInputStream(new File("D:\\image\\20180830.mp4"));
            boolean flag = uploadFile("192.168.4.141", 21, "test", "123456", "/pub/","/videoStatement", "11122.mp4", in);
            System.out.println(flag);
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
    }


controller层方法

/**
  * 
  * 
  * 下载
  * @param request
  * @param modelMap
  * @param id
  * @throws Exception
  */

@RequestMapping(value = "downLoad")
 public void downLoad(HttpServletRequest request,ModelMap model,String id) throws Exception {
  SmartFile findById = smartFileServiceImpl.findById(id);
  String savePath = findById.getSavePath();
  String videoName = findById.getVideoName();
  String savePath1 = savePath.substring(0,savePath.lastIndexOf("/"));
  System.out.println("截取路径为----------"+savePath1);
   boolean flag = FtpUtil.downloadFile("10.12.xxx.xx", 21, "admin", "123456", savePath1,videoName);
   System.out.println(flag);
   model.addAttribute("flag", flag);
 }
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
FTP(文件传输协议)是一种用于在网络上传输文件的标准协议。它可以让用户通过FTP客户端将文件从一个位置上传到另一个位置,或者从一个位置下载到本地计算机。 FTP上传是将文件从本地计算机上传到远程服务器的过程。首先,用户需要连接到FTP服务器,并使用正确的用户名和密码进行身份验证。一旦连接建立,用户可以使用FTP客户端在本地计算机上选择要上传的文件,然后将其传输到服务器上的目标位置。上传过程中,需要确保网络连接稳定,并且上传的文件在传输过程中不会被损坏。 FTP下载是将文件从远程服务器下载到本地计算机的过程。同样地,用户需要连接到FTP服务器,并进行身份验证。一旦连接建立,用户可以使用FTP客户端浏览服务器上可用的文件,并选择要下载的文件。下载过程中,文件将从服务器传输到本地计算机的指定目录中。 FTP上传下载可以用于许多不同的场景。例如,网站管理员可以使用FTP上传网站文件到服务器上,以便在互联网上进行访问。用户也可以使用FTP下载软件、音频、视频等文件到自己的计算机上。此外,FTP还可以用于公司内部文件共享,团队成员可以通过FTP将文件传输给其他成员。 总而言之,FTP上传下载是一种可靠的文件传输方法,允许用户在本地计算机和远程服务器之间传输文件。它在很多领域都有广泛的应用,为用户提供了便利和灵活性。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值