后端实现预览pdf,mp4,图片

PDF预览

java 复制代码
  /**
     * pdf预览
     * @param response
     */
    @RequestMapping(value = "/preview")
    public void showPdf(HttpServletResponse response) {
        try {
            //String filePath = this.getClass().getClassLoader().getResource("../../static/pdf/readme.pdf").getPath();
            String filePath = "E:\\歌\\2022_420300_1716900370656\\监督\\2_关于加强取的通知.pdf";
            File file = new File(filePath);
            FileInputStream fileInputStream = new FileInputStream(file);
            response.setHeader("Content-Type", "application/pdf");
            OutputStream outputStream = response.getOutputStream();
            IOUtils.write(IOUtils.toByteArray(fileInputStream), outputStream);
        } catch(Exception e) {
            e.printStackTrace();
        }
    }

参考文章

视频预览

java 复制代码
@GetMapping("/download")
public void download(HttpServletResponse response) throws IOException {
        File file = new File("/Users/zxk/Movies/1.2G.mp4");
        response.setContentType("video/mp4;charset=utf8");
//设置下载文件名
        response.setHeader("Content-Disposition", "attachment;filename=" + file.getName());
//中文乱码处理
//response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(file.getName(), "UTF-8") );
//网页直接播放
response.setHeader("Content-Disposition", "inline");
//下载进度
        response.setContentLengthLong(file.length());
try (InputStream inputStream = new FileInputStream(file);
             OutputStream outputStream = response.getOutputStream()
        ) {
            IOUtils.copy(inputStream, outputStream);
        }
    }

参考文章

图片预览

java 复制代码
    @ApiOperation("访问文件")
    @GetMapping("/download/{name}")
    public void getImage(HttpServletResponse response, @PathVariable("name") String name) throws IOException {
        //动态获取图片存放位置
        //        String path = getUploadPath();//获取当前系统路径
        String path = upload;
        String imagePath = path + File.separator + name;
        if (!new File(imagePath).exists()) {
            return;
        }
        if (name.endsWith("jpg") || name.endsWith("png") || name.endsWith("gif") || name.endsWith("jpeg")) {
            //预览时不需设置Content-Disposition
            response.setContentType("image/jpeg;charset=utf-8");//图片
        }else {
            //下载
        response.setContentType("application/octet-stream");//文件
        response.setHeader("Content-Disposition", "inline; filename=" + URLEncoder.encode(name, "UTF-8"));
        }
        ServletOutputStream outputStream = response.getOutputStream();
        outputStream.write(Files.readAllBytes(Paths.get(path).resolve(name)));
        outputStream.flush();
        outputStream.close();
    }

参考文章

相关推荐
码界筑梦坊3 分钟前
基于Flask的哔哩哔哩评论数据可视化分析系统的设计与实现
python·信息可视化·flask·毕业设计
程序研10 分钟前
mysql之group by语句
数据库·mysql
大懒猫软件11 分钟前
如何有效使用Python爬虫将网页数据存储到Word文档
爬虫·python·自动化·word
大数据魔法师14 分钟前
1905电影网中国地区电影数据分析(二) - 数据分析与可视化
python·数据分析
&白帝&15 分钟前
JAVA JDK7时间相关类
java·开发语言·python
笔触狂放1 小时前
第一章 语音识别概述
人工智能·python·机器学习·语音识别
HaoHao_0101 小时前
AWS Outposts
大数据·服务器·数据库·aws·云服务器
HaoHao_0101 小时前
VMware 的 AWS
大数据·服务器·数据库·云计算·aws·云服务器
娶个名字趴1 小时前
Redis(5,jedis和spring)
数据库·redis·缓存
小炫y2 小时前
IBM 后端开发(二)
python