java spring boot 获取resource目录下的文档

发布时间:2024年01月02日

主要代码

String filePath="templates/test.xls"
ClassPathResource classPathResource = new ClassPathResource(filePath);
InputStream inputStream = classPathResource.getInputStream();

目录

主要目录存放再这
在这里插入图片描述

代码案例

public void downloadTemplate( HttpServletResponse response) {
        String path = "templates/test.xls";
        if (path == null) {
            throw new UserException("下载模板失败,模板未找到!");
        }

        String path="templates/线下成绩批量导入模板.xls";
        //资源路径
        Resource resource = new ClassPathResource(path);




        try (InputStream inputStream = resource.getInputStream()) {
            long contentLength = resource.contentLength();
            response.reset();
            response.setCharacterEncoding("UTF-8");
            response.addHeader("Content-Disposition", "attachment;filename*=utf-8''" + URLEncoder.encode(name, "UTF-8"));
            response.addHeader("Content-Length", "" + contentLength);
            response.setContentType("application/octet-stream");
            //写入输出流
            InputStream fis = new BufferedInputStream(inputStream);
            OutputStream outputStream = new BufferedOutputStream(response.getOutputStream());
            byte[] buffer = new byte[32 * 1024];
            int count = 0;
            while ((count = fis.read(buffer)) > 0) {
                outputStream.write(buffer, 0, count);
            }
            fis.close();
            outputStream.flush();
        } catch (IOException e) {
            log.error("下载模板接口异常", e);
            throw new UserException("模板下载失败!");
        }

    }
文章来源:https://blog.csdn.net/lijiabin417/article/details/135344818
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。