Java实现在线预览--openOffice实现

news/2024/11/30 18:52:09/

#Java实现在线预览–openOffice实现
##简介
之前有写了poi实现在线预览的文章,里面也说到了使用openOffice也可以做到,这里就详细介绍一下。
我的实现逻辑有两种:
一、利用jodconverter(基于OpenOffice服务)将文件(.doc、.docx、.xls、.ppt)转化为html格式。
二、利用jodconverter(基于OpenOffice服务)将文件(.doc、.docx、.xls、.ppt)转化为pdf格式。
转换成html格式大家都能理解,这样就可以直接在浏览器上查看了,也就实现了在线预览的功能;转换成pdf格式这点,需要用户安装了Adobe Reader XI,这样你会发现把pdf直接拖到浏览器页面可以直接打开预览,这样也就实现了在线预览的功能。
##将文件转化为html格式或者pdf格式
话不多说,直接上代码。

package com.pdfPreview.util;import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.ConnectException;
import java.text.SimpleDateFormat;
import java.util.Date;import com.artofsolving.jodconverter.DocumentConverter;
import com.artofsolving.jodconverter.openoffice.connection.OpenOfficeConnection;
import com.artofsolving.jodconverter.openoffice.connection.SocketOpenOfficeConnection;
import com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter;
/*** 利用jodconverter(基于OpenOffice服务)将文件(*.doc、*.docx、*.xls、*.ppt)转化为html格式或者pdf格式,* 使用前请检查OpenOffice服务是否已经开启, OpenOffice进程名称:soffice.exe | soffice.bin* * @author yjclsx*/
public class Doc2HtmlUtil {private static Doc2HtmlUtil doc2HtmlUtil;/*** 获取Doc2HtmlUtil实例*/public static synchronized Doc2HtmlUtil getDoc2HtmlUtilInstance() {if (doc2HtmlUtil == null) {doc2HtmlUtil = new Doc2HtmlUtil();}return doc2HtmlUtil;}/*** 转换文件成html* * @param fromFileInputStream:* @throws IOException */public String file2Html(InputStream fromFileInputStream, String toFilePath,String type) throws IOException {Date date = new Date();SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");String timesuffix = sdf.format(date);String docFileName = null;String htmFileName = null;if("doc".equals(type)){docFileName = "doc_" + timesuffix + ".doc";htmFileName = "doc_" + timesuffix + ".html";}else if("docx".equals(type)){docFileName = "docx_" + timesuffix + ".docx";htmFileName = "docx_" + timesuffix + ".html";}else if("xls".equals(type)){docFileName = "xls_" + timesuffix + ".xls";htmFileName = "xls_" + timesuffix + ".html";}else if("ppt".equals(type)){docFileName = "ppt_" + timesuffix + ".ppt";htmFileName = "ppt_" + timesuffix + ".html";}else{return null;}File htmlOutputFile = new File(toFilePath + File.separatorChar + htmFileName);File docInputFile = new File(toFilePath + File.separatorChar + docFileName);if (htmlOutputFile.exists())htmlOutputFile.delete();htmlOutputFile.createNewFile();if (docInputFile.exists())docInputFile.delete();docInputFile.createNewFile();/*** 由fromFileInputStream构建输入文件*/try {OutputStream os = new FileOutputStream(docInputFile);int bytesRead = 0;byte[] buffer = new byte[1024 * 8];while ((bytesRead = fromFileInputStream.read(buffer)) != -1) {os.write(buffer, 0, bytesRead);}os.close();fromFileInputStream.close();} catch (IOException e) {}OpenOfficeConnection connection = new SocketOpenOfficeConnection(8100);try {connection.connect();} catch (ConnectException e) {System.err.println("文件转换出错,请检查OpenOffice服务是否启动。");}// convertDocumentConverter converter = new OpenOfficeDocumentConverter(connection);converter.convert(docInputFile, htmlOutputFile);connection.disconnect();// 转换完之后删除word文件docInputFile.delete();return htmFileName;}/*** 转换文件成pdf* * @param fromFileInputStream:* @throws IOException */public String file2pdf(InputStream fromFileInputStream, String toFilePath,String type) throws IOException {Date date = new Date();SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");String timesuffix = sdf.format(date);String docFileName = null;String htmFileName = null;if("doc".equals(type)){docFileName = "doc_" + timesuffix + ".doc";htmFileName = "doc_" + timesuffix + ".pdf";}else if("docx".equals(type)){docFileName = "docx_" + timesuffix + ".docx";htmFileName = "docx_" + timesuffix + ".pdf";}else if("xls".equals(type)){docFileName = "xls_" + timesuffix + ".xls";htmFileName = "xls_" + timesuffix + ".pdf";}else if("ppt".equals(type)){docFileName = "ppt_" + timesuffix + ".ppt";htmFileName = "ppt_" + timesuffix + ".pdf";}else{return null;}File htmlOutputFile = new File(toFilePath + File.separatorChar + htmFileName);File docInputFile = new File(toFilePath + File.separatorChar + docFileName);if (htmlOutputFile.exists())htmlOutputFile.delete();htmlOutputFile.createNewFile();if (docInputFile.exists())docInputFile.delete();docInputFile.createNewFile();/*** 由fromFileInputStream构建输入文件*/try {OutputStream os = new FileOutputStream(docInputFile);int bytesRead = 0;byte[] buffer = new byte[1024 * 8];while ((bytesRead = fromFileInputStream.read(buffer)) != -1) {os.write(buffer, 0, bytesRead);}os.close();fromFileInputStream.close();} catch (IOException e) {}OpenOfficeConnection connection = new SocketOpenOfficeConnection(8100);try {connection.connect();} catch (ConnectException e) {System.err.println("文件转换出错,请检查OpenOffice服务是否启动。");}// convertDocumentConverter converter = new OpenOfficeDocumentConverter(connection);converter.convert(docInputFile, htmlOutputFile);connection.disconnect();// 转换完之后删除word文件docInputFile.delete();return htmFileName;}public static void main(String[] args) throws IOException {Doc2HtmlUtil coc2HtmlUtil = getDoc2HtmlUtilInstance();File file = null;FileInputStream fileInputStream = null;file = new File("D:/poi-test/exportExcel.xls");fileInputStream = new FileInputStream(file);
//		coc2HtmlUtil.file2Html(fileInputStream, "D:/poi-test/openOffice/xls","xls");coc2HtmlUtil.file2pdf(fileInputStream, "D:/poi-test/openOffice/xls","xls");file = new File("D:/poi-test/test.doc");fileInputStream = new FileInputStream(file);
//		coc2HtmlUtil.file2Html(fileInputStream, "D:/poi-test/openOffice/doc","doc");coc2HtmlUtil.file2pdf(fileInputStream, "D:/poi-test/openOffice/doc","doc");file = new File("D:/poi-test/周报模版.ppt");fileInputStream = new FileInputStream(file);
//		coc2HtmlUtil.file2Html(fileInputStream, "D:/poi-test/openOffice/ppt","ppt");coc2HtmlUtil.file2pdf(fileInputStream, "D:/poi-test/openOffice/ppt","ppt");file = new File("D:/poi-test/test.docx");fileInputStream = new FileInputStream(file);
//		coc2HtmlUtil.file2Html(fileInputStream, "D:/poi-test/openOffice/docx","docx");coc2HtmlUtil.file2pdf(fileInputStream, "D:/poi-test/openOffice/docx","docx");}}

转换成html和转换成pdf的过程几乎一样,只是在创建输出的File时前者命名为XXX.html,后者命名为XXX.pdf,在执行converter.convert(docInputFile, htmlOutputFile);时,jodconverter会自己根据文件类型名转换成对应的文件。
注意,main方法里别file2Html和file2pdf都调用,会报错的,要么转html,要么转pdf,只能选一个。还有就是在执行之前,需要启动openOffice的服务:在openOffice目录下的命令窗口中执行soffice -headless -accept=“socket,host=127.0.0.1,port=8100;urp;” -nofirststartwizard即可启动。
以上需要引入jodconverter的jar包。


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

相关文章

安卓dj专业打碟机软件_DJ打碟机调速杆,你真的会用吗?

嗨,亲爱的dj爱好者朋友们 你们好 我还是你们的好盆友 Etine 在dj基础混音过程中有一个设备上的功能是大家一定会用到的,那就是调速杆,我们也叫他pitch(音调)杆! 在两首舞曲速度不一样的时候,我们可以通过调速杆的调节将…

怎么自学python,大概需要学多久?

前言 自学Python是当前非常热门的话题,Python作为一种简洁而又功能强大的编程语言,在各个领域都有广泛的应用。然而,对于新手来说,怎样自学Python并在多长时间内掌握它,可能是一个困扰的问题。 自学任何一门编程语言…

外媒:中国手机品牌欲以低价策略攻占印度市场

美国《华尔街日报》网站八月十一日发表题为《华夏手机品牌登陆印度吹响代价战号角》的文章,称在印度的原土手机出售商场,本地坐蓐商除了要应答来自三星、苹果等国外权威公司的竞赛以外,他们也渐渐感受到了来自中国手机厂商对其听凭的还击。 以…

代码评审的18个军规,收藏好!

前言 大家好! 我们开发完需求,提测前,一般都需要代码评审。小伙伴们,你们知道代码评审,一般都有哪些军规嘛?今天田螺哥给你带来代码评审的18个军规。 公众号:捡田螺的小男孩 (有田…

【C++】泛型算法之std::for_each

std::for_each用于逐个遍历容器元素&#xff0c;它对迭代器区间[first, last)所指的每一个元素&#xff0c;执行由单参数函数对象f所定义的操作。它是for循环的一种替代方案。 std::for_each 如需使用std::for_each&#xff0c;需要引入头文件&#xff1a; #include <algo…

Fluttter的ClipRRect控件

ClipRRect简介 ClipRRect&#xff08;Rounded Rectangle Clip&#xff09;是Flutter中的一个控件&#xff0c;用于将其子控件剪裁为圆角矩形形状。 使用场景 ClipRRect通常在需要给子控件添加圆角效果时使用。它可以用于创建圆角图片、圆角容器等各种UI元素。 主要属性 bo…

gcc/g++/clang/cl编译器

编译器一般构成 传统的编译器通常分为三个部分&#xff0c;前端(frontEnd)&#xff0c;优化器(Optimizer)和后端(backEnd)。在编译过程中&#xff0c;前端主要负责词法和语法分析&#xff0c;将源代码转化为抽象语法树&#xff1b;优化器则是在前端的基础上&#xff0c;对得到…

FM25CL64程序(C51版)

FM25CL64芯片手册&#xff1a;https://wenku.baidu.com/view/dabf5e71168884868762d6aa.html #ifndef FW25CL64_H #define FW25CL64_H#include "reg51.h" #include "intrins.h"#define WREN 0X06 //写使能操作码 #define WRDI 0X04 //写禁止…