广告位联系
返回顶部
分享到

java通过jacob实现office在线预览的方法

java 来源:互联网搜集 作者:秩名 发布时间:2019-08-21 21:20:51 人浏览
摘要

简介: 这篇文章中的代码都是参考于网上的,只做一个记录。 主要做的就是实现一个office在线预览功能。 第一步:装office 第二步:下载jacob 打开 网址 下载,目前最新的是1.19版本。 第三步:配置jdk 解压下载完的jacob压缩包,根据jdk的版本选择dll中的一

简介:

这篇文章中的代码都是参考于网上的,只做一个记录。

主要做的就是实现一个office在线预览功能。


第一步:装office

第二步:下载jacob

打开网址-[-/a>下载,目前最新的是1.19版本。

第三步:配置jdk

解压下载完的jacob压缩包,根据jdk的版本选择dll中的一个,放入/jdk/jre/bin中。

第四步:在项目中引入jar包

在maven官网上找不到com.jacob的jar包,只能手动引入,这个jar包在jacob的压缩包中有。
 

<dependency>
  <groupId>com.jacob</groupId>
  <artifactId>jacob</artifactId>
  <version>1.19</version>
  <scope>system</scope>
  <systemPath>${project.basedir}/lib/jacob.jar</systemPath>
</dependency>

第五步:将office转化为pdf文件

这里需要再次说明,这个代码不是我写的,这里只是做个记录,方便下次用到的时候直接使用。

import org.springframework.web.bind.annotation.RequestMapping;
import javax.servlet.http.HttpServletResponse;
import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.ComThread;
import com.jacob.com.Dispatch;
import com.jacob.com.Variant;
import org.springframework.web.bind.annotation.RestController;
import java.io.*;
 
@RestController
public class PdfConvert {
 
 @RequestMapping("/PdfConvert.do")
 public void PdfConvert(HttpServletResponse response) {
  String path = "C:\\Users\\acer\\Desktop\\测试.doc";
  String path2 = "C:\\Users\\acer\\Desktop\\测试.pdf";
  word2PDF(path, path2);
  String path3 = "C:\\Users\\acer\\Desktop\\测试2.ppt";
  String path4 = "C:\\Users\\acer\\Desktop\\测试2.pdf";
  ppt2PDF(path3, path4);
  String path5 = "C:\\Users\\acer\\Desktop\\测试3.xls";
  String path6 = "C:\\Users\\acer\\Desktop\\测试3.pdf";
  excel2PDF(path5, path6);
 }
 
 public boolean word2PDF(String inputFile, String pdfFile) {
  ActiveXComponent app = new ActiveXComponent("Word.Application");
  try {
   app.setProperty("Visible", false);
   Dispatch docs = app.getProperty("Documents").toDispatch();
   Dispatch doc = Dispatch.call(docs, "Open", new Object[]{inputFile, false, true}).toDispatch();
   Dispatch.call(doc, "ExportAsFixedFormat", new Object[]{pdfFile, 17});
   Dispatch.call(doc, "Close", new Object[]{false});
   app.invoke("Quit", 0);
   return true;
  } catch (Exception var6) {
   app.invoke("Quit", 0);
   return false;
  }
 }
 
 public boolean excel2PDF(String inputFile, String pdfFile) {
  ComThread.InitSTA(true);
  ActiveXComponent app = new ActiveXComponent("Excel.Application");
  try {
   app.setProperty("Visible", false);
   app.setProperty("AutomationSecurity", new Variant(3));
   Dispatch excels = app.getProperty("Workbooks").toDispatch();
   Dispatch excel = Dispatch.invoke(excels, "Open", 1, new Object[]{inputFile, new Variant(false), new Variant(false)}, new int[9]).toDispatch();
   Dispatch.invoke(excel, "ExportAsFixedFormat", 1, new Object[]{new Variant(0), pdfFile, new Variant(0)}, new int[1]);
   Dispatch.call(excel, "Close", new Object[]{false});
   if (app != null) {
    app.invoke("Quit", new Variant[0]);
    app = null;
   }
 
   ComThread.Release();
   return true;
  } catch (Exception var6) {
   app.invoke("Quit");
   return false;
  }
 }
 
 public boolean ppt2PDF(String inputFile, String pdfFile) {
  ActiveXComponent app = new ActiveXComponent("PowerPoint.Application");
 
  try {
   Dispatch ppts = app.getProperty("Presentations").toDispatch();
   Dispatch ppt = Dispatch.call(ppts, "Open", new Object[]{inputFile, true, true, false}).toDispatch();
   Dispatch.call(ppt, "SaveAs", new Object[]{pdfFile, 32});
   Dispatch.call(ppt, "Close");
   app.invoke("Quit");
   return true;
  } catch (Exception var6) {
   app.invoke("Quit");
   return false;
  }
 }
}

第六步:在页面上展示pdf

后端:
 
@RequestMapping("/GetPdf.do")
 public void GetPdf(HttpServletResponse response) {
  //从数据库中查出文件位置和文件名字
  String pdfpath = "C:\\Users\\acer\\Desktop\\测试.pdf";
  String pdfname = "测试";
  try {
   File file = new File(pdfpath);
   if (!file.exists()) {
    response.getWriter().write("该文档生成pdf失败,请下载文档查看");
    return;
   }
   InputStream fis = new FileInputStream(pdfpath);
   byte[] buffer = new byte[1024];
   response.reset();
   response.addHeader("Content-Disposition", "inline;filename=" + java.net.URLEncoder.encode(pdfname, "UTF-8"));
   response.addHeader("Content-Length", "" + file.length());
   response.setContentType("application/pdf");
   OutputStream toClient = new BufferedOutputStream(response.getOutputStream());
   int nbytes = 0;
   while ((nbytes = fis.read(buffer)) != -1) {
    toClient.write(buffer, 0, nbytes);
    toClient.flush();
   }
   toClient.flush();
   toClient.close();
   fis.close();
  } catch (Exception ex) {
   ex.printStackTrace();
  }
 }

前端:

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8"/>
 <title>pdf在线预览</title>
</head>
<body>
<div style=" width: 100%; height: 100%;">
 <embed src="/GetPdf.do"
   type="application/pdf" style="overflow: auto; width: 100%; height: 800px;" />
</div>
</body>
</html>


版权声明 : 本文内容来源于互联网或用户自行发布贡献,该文观点仅代表原作者本人。本站仅提供信息存储空间服务和不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权, 违法违规的内容, 请发送邮件至2530232025#qq.cn(#换@)举报,一经查实,本站将立刻删除。
原文链接 : https://blog.csdn.net/tuesdayma/article/details/81286746
相关文章
  • SpringBoot自定义错误处理逻辑介绍

    SpringBoot自定义错误处理逻辑介绍
    1. 自定义错误页面 将自定义错误页面放在 templates 的 error 文件夹下,SpringBoot 精确匹配错误信息,使用 4xx.html 或者 5xx.html 页面可以打印错误
  • Java实现手写一个线程池的代码

    Java实现手写一个线程池的代码
    线程池技术想必大家都不陌生把,相信在平时的工作中没有少用,而且这也是面试频率非常高的一个知识点,那么大家知道它的实现原理和
  • Java实现断点续传功能的代码

    Java实现断点续传功能的代码
    题目实现:网络资源的断点续传功能。 二、解题思路 获取要下载的资源网址 显示网络资源的大小 上次读取到的字节位置以及未读取的字节
  • 你可知HashMap为什么是线程不安全的
    HashMap 的线程不安全 HashMap 的线程不安全主要体现在下面两个方面 在 jdk 1.7 中,当并发执行扩容操作时会造成环形链和数据丢失的情况 在
  • ArrayList的动态扩容机制的介绍

    ArrayList的动态扩容机制的介绍
    对于 ArrayList 的动态扩容机制想必大家都听说过,之前的文章中也谈到过,不过由于时间久远,早已忘却。 所以利用这篇文章做做笔记,加
  • JVM基础之字节码的增强技术介绍

    JVM基础之字节码的增强技术介绍
    字节码增强技术 在上文中,着重介绍了字节码的结构,这为我们了解字节码增强技术的实现打下了基础。字节码增强技术就是一类对现有字
  • Java中的字节码增强技术

    Java中的字节码增强技术
    1.字节码增强技术 字节码增强技术就是一类对现有字节码进行修改或者动态生成全新字节码文件的技术。 参考地址 2.常见技术 技术分类 类
  • Redis BloomFilter布隆过滤器原理与实现

    Redis BloomFilter布隆过滤器原理与实现
    Bloom Filter 概念 布隆过滤器(英语:Bloom Filter)是1970年由一个叫布隆的小伙子提出的。它实际上是一个很长的二进制向量和一系列随机映射
  • Java C++算法题解leetcode801使序列递增的最小交换次

    Java C++算法题解leetcode801使序列递增的最小交换次
    题目要求 思路:状态机DP 实现一:状态机 Java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 class Solution { public int minSwap(int[] nums1, int[] nums2) { int n
  • Mybatis结果集映射与生命周期介绍

    Mybatis结果集映射与生命周期介绍
    一、ResultMap结果集映射 1、设计思想 对简单的语句做到零配置,对于复杂一点的语句,只需要描述语句之间的关系就行了 2、resultMap的应用场
  • 本站所有内容来源于互联网或用户自行发布,本站仅提供信息存储空间服务,不拥有版权,不承担法律责任。如有侵犯您的权益,请您联系站长处理!
  • Copyright © 2017-2022 F11.CN All Rights Reserved. F11站长开发者网 版权所有 | 苏ICP备2022031554号-1 | 51LA统计