• 利用vue 及java io流实现浏览器预览docx功能


    1.后端接口

    1. @GetMapping(value = "/download")
    2. public void download(HttpServletResponse res, HttpServletResponse response) throws Exception {
    3. String fileName = "科协页面详细说明.docx";
    4. String path = "C://Users/hanku/Desktop/"+fileName;
    5. // 把二进制流放入到响应体中
    6. File file = new File(path);
    7. if (file.exists()) {
    8. byte[] data = null;
    9. FileInputStream input = new FileInputStream(file);
    10. data = new byte[input.available()];
    11. input.read(data);
    12. // 根据文件类型,设置文件Content-Type
    13. String fileType = fileName.substring(fileName.lastIndexOf(".")).toUpperCase();
    14. // 设置Content-Type头
    15. switch (fileType) {
    16. case ".JPG":
    17. response.setContentType("image/jpeg");
    18. break;
    19. case ".JPEG":
    20. response.setContentType("image/jpeg");
    21. break;
    22. case ".PNG":
    23. response.setContentType("image/png");
    24. break;
    25. case ".PDF":
    26. response.setContentType("application/pdf");
    27. break;
    28. case ".DOC":
    29. response.setContentType("application/msword");
    30. break;
    31. case ".DOCX":
    32. case ".docx":
    33. response.setContentType("application/vnd.openxmlformats-officedocument.wordprocessingml.document");
    34. break;
    35. default:
    36. response.setContentType("application/json");
    37. }
    38. response.getOutputStream().write(data);
    39. input.close();
    40. }
    41. }

    2.vue前端

    vue项目要先下载插件哦   

    npm i docx-preview@0.1.4

    npm i jszip

    这里面有两种预览效果,一种是一层层找相应的docx文件,另一种是指定目录和文件名打开

    参考资料:https://zhuanlan.zhihu.com/p/437059185
    1. <template>
    2. <div class="my-component" ref="preview">
    3. <!-- //https://blog.csdn.net/weixin_52103939/article/details/122447620 -->
    4. <input type="file" @change="preview" ref="file" />
    5. <button @click="goPreview">di</button>
    6. <div ref="preview"></div>
    7. </div>
    8. </template>
    9. <script>
    10. const docx = require("docx-preview");
    11. window.JSZip = require("jszip");
    12. export default {
    13. methods: {
    14. preview(e) {
    15. docx.renderAsync(this.$refs.file.files[0], this.$refs.preview); // 渲染到页面预览
    16. },
    17. // 预览
    18. goPreview() {
    19. //参考资料:https://zhuanlan.zhihu.com/p/437059185
    20. // axios({
    21. // method: "get",
    22. // responseType: "blob", // 因为是流文件,所以要指定blob类型或者arraybuffer
    23. // url: "localhost:13000/download", // 自己的服务器,提供的一个word下载文件接口
    24. // }).then(({ data }) => {
    25. // debugger
    26. // console.log(data); // 后端返回的是流文件
    27. // docx.renderAsync(data, this.$refs.file); // 渲染到页面
    28. // });
    29. this.$http({ method: "get", url: "/download", responseType: "blob" })
    30. .then((response) => {
    31. console.log(response);
    32. docx.renderAsync(response.data, this.$refs.preview); // 渲染到页面(着重注意
    33. this.$refs.preview要和<div ref="preview"></div>保持一致)
    34. })
    35. .catch(function (error) {});
    36. },
    37. },
    38. };
    39. </script>
    40. <style lang="less" scoped>
    41. .my-component {
    42. width: 100%;
    43. height: 90vh;
    44. border: 1px solid #000;
    45. }
    46. </style>

  • 相关阅读:
    kibana 操作elasticsearch索引
    [CISCN2019 华北赛区 Day1 Web2]ikun
    java计算机毕业设计影院资源管理系统演示录像2020源程序+mysql+系统+lw文档+远程调试
    Golang结构体按某一成员变量排序
    Vue--》简述组件的数据共享
    五.docker+jenkins自动部署项目
    使用html2canvas实现超出浏览器部分截图
    人工智能--深度神经网络
    北京大学肖臻老师《区块链技术与应用》公开课笔记:以太坊原理(三):智能合约
    【设计模式】 - 结构型模式 - 外观模式
  • 原文地址:https://blog.csdn.net/qq_41611829/article/details/125531096