上传文件到sftp服务器

/**
     * 上传文件到SFTP服务器
     *
     * @param remotePath   sftp服务器路径
     * @param fileName     sftp服务器文件名
     * @param closeFlag    是否要关闭本次SFTP连接: true-关闭, false-不关闭
     * @param filePathFlag 是否要创建远程的指定目录: true-创建, false-不创建
     * @throws IOException
     */
    public boolean upFile2(String remotePath, String fileName, InputStream input,
                           boolean closeFlag, boolean filePathFlag) throws Exception {
        boolean flag = false;
        try {
            // 判断是否要在远程目录上创建对应的目录
            if (filePathFlag) {
                String[] dirs = remotePath.split("\\/");
                if (dirs == null || dirs.length < 1) {
                    dirs = remotePath.split("\\\\");
                }

                this.channel.cd("/");
                for (int i = 0; i < dirs.length; i++) {
                    if (dirs[i] != null && !"".equals(dirs[i])) {
                        boolean dirExists = this.openDirs(dirs[i]);
                        if (!dirExists) {
                            this.channel.mkdir(dirs[i]);
                            this.channel.cd(dirs[i]);
                        }
                    }
                }
                this.channel.cd("/");
            }
            this.channel.cd(remotePath);
            this.channel.put(input, fileName);
            flag = true;
        } catch (SftpException e) {
            throw new RuntimeException("文件上传失败!");
        } finally {
            if (input != null) {
                try {
                    input.close();
                } catch (Exception localException1) {
                    throw new RuntimeException("输入流关闭失败!");
                }
            }
            // 判断是否要关闭本次SFTP连接
            if (closeFlag) {
                disconnect();
            }
        }
        return flag;
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值