Java实现office办公文档在线预览(word、excel、ppt、txt等)

news/2024/11/23 22:34:58/

文章目录

一、官网下载openOffice 安装包,运行安装(不同系统的安装请自行百度,这里不做过多描述)

二、pom中引入依赖

三、office文件转为pdf流的工具类

四、service层代码 

五、controller层代码


office办公文档,如doc、docx、xls、xlsx、ppt、pptx是无法直接在浏览器中打开的,但很多OA办公软件都要求office文档能直接在线预览功能,解决方法如下:

1、office文档转为html,使用POI将文档转为html文件,直接浏览器打开预览

优点:简单,方便不需要安装其他插件

缺点:对拓展名为docx、xlsx、pptx格式文档,最终转换输出的格式样式会出错,影响客户阅读,对于客户需求度不高的可以使用该方法处理

2、office文档转为pdf,使用POI和fr.opensagres.xdocreport将文档转为pdf文件,让浏览器内置pdf阅读器浏览

优点:简单,方便不需要安装其他插件

缺点:doc、xls、ppt输出格式问题不是很大,docx、xlsx、pptx格式文档输出样式错误,并且会出现文字丢失等情况,影响客户阅读

  fr.opensagres.xdocreport 依赖地址:

<dependency><groupId>fr.opensagres.xdocreport</groupId><artifactId>org.apache.poi.xwpf.converter.pdf</artifactId><version>1.0.6</version>
</dependency>

3、office文档转为pdf,使用Apache提供的openOffice将文件转为pdf文件;保证文档格式、文件转换输出稳定,满足在线预览条件。推荐

优点:免费,完美解决转换格式出错问题

缺点:需要下载安装第三方工具openOffice

本地电脑如果装了Adobe Reader XI,那把pdf直接拖到浏览器页面就可以直接打开预览,前提就是浏览器要支持pdf文件浏览。

这篇博客主要介绍第三种方法,通过poi实现word、excel、ppt转pdf流,这样就可以在浏览器上实现预览了。


一、官网下载openOffice 安装包,运行安装(不同系统的安装请自行百度,这里不做过多描述)

去官网下载:点击去官网下载

 二、pom中引入依赖

<!-- openoffice -->
<dependency><groupId>com.artofsolving</groupId><artifactId>jodconverter</artifactId><version>2.2.1</version>
</dependency>

 三、office文件转为pdf流的工具类

import com.artofsolving.jodconverter.DefaultDocumentFormatRegistry;
import com.artofsolving.jodconverter.DocumentConverter;
import com.artofsolving.jodconverter.DocumentFormat;
import com.artofsolving.jodconverter.openoffice.connection.OpenOfficeConnection;
import com.artofsolving.jodconverter.openoffice.connection.SocketOpenOfficeConnection;
import com.artofsolving.jodconverter.openoffice.converter.StreamOpenOfficeDocumentConverter;import java.io.*;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLConnection;
import java.nio.file.Files;/*** 文件格式转换工具类*/
public class FileConvertUtil {/*** 默认转换后文件后缀*/private static final String DEFAULT_SUFFIX = "pdf";/*** 端口*/private static final Integer OPENOFFICE_PORT = 8100;/*** office文档转换为PDF(处理本地文件)** @param sourcePath 源文件路径* @param suffix     源文件后缀* @return InputStream 转换后文件输入流*/public static InputStream convertLocaleFile(String sourcePath, String suffix) throws Exception {File inputFile = new File(sourcePath);InputStream inputStream = Files.newInputStream(inputFile.toPath());return covertCommonByStream(inputStream, suffix);}/*** office文档转换为PDF(处理网络文件)** @param netFileUrl 网络文件路径* @param suffix     文件后缀* @return InputStream 转换后文件输入流*/public static InputStream convertNetFile(String netFileUrl, String suffix) throws Exception {// 创建URLURL url = new URL(netFileUrl);// 试图连接并取得返回状态码URLConnection urlConnection = url.openConnection();urlConnection.connect();HttpURLConnection httpUrlConnection = (HttpURLConnection) urlConnection;int httpResult = httpUrlConnection.getResponseCode();if (httpResult == HttpURLConnection.HTTP_OK) {InputStream inputStream = urlConnection.getInputStream();return covertCommonByStream(inputStream, suffix);}return null;}/*** 将文件以流的形式转换** @param inputStream 源文件输入流* @param suffix      源文件后缀* @return InputStream 转换后文件输入流*/public static InputStream covertCommonByStream(InputStream inputStream, String suffix) throws Exception {ByteArrayOutputStream out = new ByteArrayOutputStream();OpenOfficeConnection connection = new SocketOpenOfficeConnection(OPENOFFICE_PORT);connection.connect();DocumentConverter converter = new StreamOpenOfficeDocumentConverter(connection);DefaultDocumentFormatRegistry formatReg = new DefaultDocumentFormatRegistry();DocumentFormat targetFormat = formatReg.getFormatByFileExtension(DEFAULT_SUFFIX);DocumentFormat sourceFormat = formatReg.getFormatByFileExtension(suffix);converter.convert(inputStream, sourceFormat, out, targetFormat);connection.disconnect();return outputStreamConvertInputStream(out);}/*** outputStream转inputStream*/public static ByteArrayInputStream outputStreamConvertInputStream(final OutputStream out) throws Exception {ByteArrayOutputStream outputStream = (ByteArrayOutputStream) out;return new ByteArrayInputStream(outputStream.toByteArray());}}

四、service层代码 

    @Overridepublic void onlinePreview(String url, HttpServletResponse response) {// 获取文件类型String[] str = SmartStringUtil.split(url, "\\.");if (str.length == 0) {throw new Exception("文件格式不正确");}String suffix = str[str.length - 1];if (!"txt".equals(suffix) && !"doc".equals(suffix) && !"docx".equals(suffix) && !"xls".equals(suffix)&& !"xlsx".equals(suffix) && !"ppt".equals(suffix) && !"pptx".equals(suffix)) {throw new Exception("文件格式不支持预览");}try {InputStream in = FileConvertUtil.convertNetFile(url, suffix);OutputStream outputStream = response.getOutputStream();// 创建存放文件内容的数组byte[] buff = new byte[1024];// 所读取的内容使用n来接收int n;// 当没有读取完时,继续读取,循环while ((n = in.read(buff)) != -1) {// 将字节数组的数据全部写入到输出流中outputStream.write(buff, 0, n);}// 强制将缓存区的数据进行输出outputStream.flush();// 关闭流outputStream.close();in.close();} catch (Exception e) {throw new RuntimeException(e);}}

五、controller层代码

    @PostMapping("/file/onlinePreview")public void onlinePreview(@RequestParam("url") String url, HttpServletResponse response) throws Exception{fileService.onlinePreview(url,response);}

如果这篇文章对您有所帮助,或者有所启发的话,求一键三连:点赞、评论、收藏➕关注,您的支持是我坚持写作最大的动力。 


http://www.ppmy.cn/news/669300.html

相关文章

通过无模型多代理强化学习掌握Stratego游戏

Stratego是一款流行的双人不完美信息棋盘游戏。由于其复杂性源于其巨大的游戏树、在不完善的信息下进行决策以及一开始的分段部署阶段&#xff0c;Stratego对人工智能&#xff08;AI&#xff09;构成了挑战。以前的计算机程序充其量只在业余水平上运行。 Perolat等人引入了一种…

【算法】Two Sum 两数之和

文章目录 Two Sum 两数之和问题描述&#xff1a;分析代码 Tag Two Sum 两数之和 问题描述&#xff1a; 给定一个整数数组 nums 和一个整数目标值 target&#xff0c;请你在该数组中找出 和为目标值 target 的那 两个 整数&#xff0c;并返回它们的数组下标。 你可以假设每种…

基于 unity 配置 adb

1.打开环境变量配置path的环境 2 找到自己的unity安装目录,找到对应路径 配置到 path 属性中 C:\~\Editor\2021.3.0f1c1\Editor\Data\PlaybackEngines\AndroidPlayer\SDK\platform-tools 3 应用保存即可

IT之家精华:苹果iOS系统发布/固件下载/升级更新大全表~

在Windows或macOS桌面端打开最新版iTunes&#xff0c;Windows里按下“Shift更新”&#xff08;macOS里按下option更新&#xff09;&#xff0c;选取将要刷入的固件&#xff0c;下面的动作交给苹果就好了。 3、IT之家特别整理一些常见指南 如何备份iPhone/iPad&#xff1a;点这…

iPhone升级系统之后手机不能正常使用

苹果现在更新系统的频率越来越快&#xff0c;大家为了体验新功能&#xff0c;可能会给手机系统升级&#xff0c;但是更新了系统之后手机总会出现这样那样的问题&#xff0c;导致手机不能正常使用。 这个时候首先可以先用iTunes解决问题&#xff0c;如果iTunes解决不了&#xf…

iTunes 9.0.3 更新

iTunes 9.0.3 提供了一些重要的错误修正&#xff0c;包含&#xff1a; * iTunes 不会再忽略“记住购物密码”的设定。 * 解决了将部份“智慧型播放列表”和 Podcast 与 iPod 同步的问题。 * 解决了 iPod 连接时的辨识问题。 * 解决了改进稳定性和执行效能的问题。 iTunes 9 内…

macOS Monterey(版本12.6.3)使用iTunes

一、自制安装包下载 安装包下载链接&#xff1a;https://wwfw.lanzouf.com/iR2GR0l0n0ej 二、若打开显示“已损坏&#xff0c;无法打开。 您应该将它移到废纸篓“ 1、允许“任何来源”开启 苹果从macOS Sierra 10.12 开始&#xff0c;已经去除了允许“任何来源”的选项&am…

如何关闭iOS系统自动更新提示?

几个应对方案&#xff1a; 1. 设置 - 通用 - 用量 - 管理存储空间 - 找到更新包(ios9.3)&#xff0c;点击&#xff0c;删除 2. 设置 - iTunes&App Stores, 找到Updates&#xff0c;关闭。 如果以上两个方案还不管用&#xff0c;直接&#xff1a;在手机上打开safari&#…