您好,欢迎来到微智科技网。
搜索
您的当前位置:首页sftp文件上传uploadFile

sftp文件上传uploadFile

来源:微智科技网
  • 从本地服务器指定目录推送到静态资源服务器指定目录下,删除原文件
// localFullFileName 本地文件
// remotePath远程文件路径
// SftpConfig 
public static void uploadFile(String localFullFileName,String remotePath, SftpConfig sftpConfig){
        SftpClientWrapper sftp = new SftpClientWrapper();
        try {
            if (StringUtils.isNotEmpty(sftpConfig.getPassword())){
                sftp.initSession(sftpConfig.getIp(), sftpConfig.getPort(), sftpConfig.getUsername(),sftpConfig.getPassword());

            } else if (StringUtils.isNotEmpty(sftpConfig.getPrivateKey())) {
                sftp.initSessionByKey(sftpConfig.getIp(),sftpConfig.getPort(),sftpConfig.getUsername(),sftpConfig.getPrivateKey());
            }else {
                throw new SftpException(4,"sftp配置错误");
            }
            sftp.initChannelSftp();
            if (StringUtils.isNotEmpty(remotePath)){
                sftp.sftp.cd(remotePath);
            }
            log.debug(sftp.sftp.pwd());
            sftp.upload(sLocalFullFileName,"./");
        } catch (JSchException | SftpException e) {
            throw new RuntimeException(e);
        }finally {
            sftp.close();
        }


因篇幅问题不能全部显示,请点此查看更多更全内容

Copyright © 2019- 7swz.com 版权所有 赣ICP备2024042798号-8

违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务