文件名乱码,项目打包上传到服务器下载文件损坏

14 篇文章 0 订阅
/**
     * 下载航线信息导入模板
     */
    @GetMapping(value = "/downloadTemplateNew")
    @ApiOperation(value = "下载航线信息导入新版模板")
    public void downloadStationInfoTemplateNew(HttpServletRequest request, HttpServletResponse response){

        try {
            request.setCharacterEncoding("utf-8");
            response.setCharacterEncoding("utf-8");
            String fileName = "新版航线模板.xlsx";

            response.setContentType("multipart/form-data");
            response.setHeader("Content-Disposition", "attachment; fileName=" + URLEncoder.encode(fileName, "UTF-8"));
            // 这种方法读取文件不行
           // ClassPathResource classPathResource = new ClassPathResource("template/" + fileName);


 InputStream inputStream = RouteInfoController.class.getClassLoader().getResourceAsStream("template/" + fileName);
//            // 可以一开始就看到文件大小
//
//            InputStream inputStream = classPathResource.getInputStream();
            OutputStream outputStream = response.getOutputStream();

            byte[] buffer = new byte[1024 * 1024 * 10];
            int length = -1;
            while ((length = inputStream.read(buffer)) != -1) {
                outputStream.write(buffer, 0, length);
            }
            inputStream.close();
            outputStream.flush();
            outputStream.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

不能用swagger测试下载,swagger测试文件名永远是乱码,直接把地址放浏览器上请求

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值