SpringBoot接口内部从sftp服务器获取文件流实现文件下载

SpringBoot接口内部从sftp服务器获取文件流实现文件下载

    @GetMapping("/voice/file/download")
    @ApiOperation("语音文件--按id下载录音文件")
    @RequestLog(businessType = BusinessType.SELECT)
    public void downloadFile(@RequestParam("recfilename") String recfilename, HttpServletResponse response) throws IOException {
        ChannelSftp channel = (ChannelSftp) SftpUtil.initialChannel(null, sftpCtiConfiguration.getAccountSftp(), sftpCtiConfiguration.getEntranceTicketSftp(), sftpCtiConfiguration.getServerIp(), sftpCtiConfiguration.getPortSftp(), "180000");

        if (channel == null) {
            log.error(this.getClass().getSimpleName() + "#callVoiceFileList, step0:初始化连接sftp服务器失败!");
            emailUtil.sendMail("获取语音文件失败,初始化连接sftp服务器失败!请联系相关人员进行人工处理,谢谢!", "Connect sftp server failed");
            throw new BusinessException("连接cti服务器失败,请排查配置信息!");
        }
        InputStream inputStream;
        try {
            inputStream = channel.get(recfilename);
        } catch (SftpException e) {
            log.error("获取文件失败", e);
            emailUtil.sendMail("获取语音文件失败,请联系相关人员进行人工处理,谢谢!", "Get file failed");
            throw new BusinessException("获取文件失败");
        }

        String filename = recfilename.substring(recfilename.lastIndexOf("/") + 1);
        response.setCharacterEncoding("utf-8");
        response.setContentType("application/octet-stream");
        // 对真实文件名进行百分号编码
        String percentEncodedFileName = URLEncoder.encode(filename, "utf-8")
                .replaceAll("\\+", "%20");
        // 组装contentDisposition的值
        StringBuilder contentDispositionValue = new StringBuilder();
        contentDispositionValue.append("attachment; filename=")
                .append(percentEncodedFileName)
                .append(";")
                .append("filename*=")
                .append("utf-8''")
                .append(percentEncodedFileName);
        response.setHeader("Content-disposition",
                contentDispositionValue.toString());
        response.setHeader("filename", java.net.URLEncoder.encode(filename, "UTF-8"));
        // 将文件流写到response中
        try (
             OutputStream outputStream = response.getOutputStream()) {
            IOUtils.copy(inputStream, outputStream);
        } catch (IOException e) {
            log.error("文件下载失败!", e);
            throw new BusinessException("文件下载失败!");
        }
        log.info(this.getClass().getSimpleName() + "#downloadFile(),文件下载完毕!");
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值