当前位置:   article > 正文

SSM使用OpenOffice+Adobe acrobat实现Office文件的在线预览_ssm预览文件

ssm预览文件

文章迁移自语雀。

也许Java天生不适合处理Office文件吧,POI的使用一堆问题,现在SpringMVC+Spring+Mybatis的web项目想实现在线预览也是问题一大堆。马的,开始时打算使用OpenOffice+SWFTools+FlexPaper的,但是该方案是使用flash的,众所周知,flash明年就要死了,故放弃,后来又想使用pdf2HtmlEx将pdf转成html,这b办法也是一堆坑,摸索了半天,总算有了一个好的解决方案:

OpenOffice将Office文件转换为pdf,存储进服务器硬盘上的固定文件夹,随后将该文件夹在Tomcat中配置虚拟路径,Controller收到预览请求后查找到该虚拟路径返回,浏览器安装了Adobe acrobat之后就可以直接预览了。

Adobe acrobat的好处在哪里呢?在于它不仅支持pdf,对于txt,mp3,png,jpg,mp4等文件均可以直接预览,省去了很多事情。

当然,该方法也有局限,要求用户必须安装Adobe acrobat。

至于更好的办法目前还没有。

首先,给出OpenOffice4.0和jodconverter所需的jar包:

  1. import java.io.File;
  2. import java.io.FileInputStream;
  3. import java.io.FileNotFoundException;
  4. import java.io.FileOutputStream;
  5. import java.io.IOException;
  6. import java.io.InputStream;
  7. import java.io.OutputStream;
  8. import java.net.ConnectException;
  9. import java.text.SimpleDateFormat;
  10. import java.util.Date;
  11. import java.util.Scanner;
  12. import com.artofsolving.jodconverter.DocumentConverter;
  13. import com.artofsolving.jodconverter.openoffice.connection.OpenOfficeConnection;
  14. import com.artofsolving.jodconverter.openoffice.connection.SocketOpenOfficeConnection;
  15. import com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter;
  16. /**
  17. * Office文件转换工具
  18. * 将doc,docx,xls,xlsx,pp,pptx转换为pdf
  19. * @author shuaicenglou
  20. *
  21. */
  22. public class DocConverter {
  23. private String convert(InputStream fromFileInputStream, String toFilePath,String type) throws IOException {
  24. Date date = new Date();
  25. SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
  26. String timesuffix = sdf.format(date);
  27. String docFileName = null;
  28. String htmFileName = null;
  29. if(".doc".equals(type)){
  30. docFileName = "doc_" + timesuffix + ".doc";
  31. htmFileName = "doc_" + timesuffix + ".pdf";
  32. }else if(".docx".equals(type)){
  33. docFileName = "docx_" + timesuffix + ".docx";
  34. htmFileName = "docx_" + timesuffix + ".pdf";
  35. }else if(".xls".equals(type)){
  36. docFileName = "xls_" + timesuffix + ".xls";
  37. htmFileName = "xls_" + timesuffix + ".pdf";
  38. }else if(".ppt".equals(type)){
  39. docFileName = "ppt_" + timesuffix + ".ppt";
  40. htmFileName = "ppt_" + timesuffix + ".pdf";
  41. }else if(".pptx".equals(type)){
  42. docFileName = "pptx_" + timesuffix + ".pptx";
  43. htmFileName = "pptx_" + timesuffix + ".pdf";
  44. }else{
  45. return null;
  46. }
  47. File htmlOutputFile = new File(toFilePath + File.separatorChar + htmFileName);
  48. File docInputFile = new File(toFilePath + File.separatorChar + docFileName);
  49. if (htmlOutputFile.exists()) {
  50. htmlOutputFile.delete();
  51. }
  52. htmlOutputFile.createNewFile();
  53. if (docInputFile.exists()) {
  54. docInputFile.delete();
  55. }
  56. docInputFile.createNewFile();
  57. /**
  58. * 由fromFileInputStream构建输入文件
  59. */
  60. try {
  61. OutputStream os = new FileOutputStream(docInputFile);
  62. int bytesRead = 0;
  63. byte[] buffer = new byte[1024 * 8];
  64. while ((bytesRead = fromFileInputStream.read(buffer)) != -1) {
  65. os.write(buffer, 0, bytesRead);
  66. }
  67. os.close();
  68. fromFileInputStream.close();
  69. } catch (IOException e) {
  70. }
  71. OpenOfficeConnection connection = new SocketOpenOfficeConnection(8100);
  72. try {
  73. connection.connect();
  74. } catch (ConnectException e) {
  75. System.err.println("文件转换出错,请检查OpenOffice服务是否启动");
  76. }
  77. // convert
  78. DocumentConverter converter = new OpenOfficeDocumentConverter(connection);
  79. converter.convert(docInputFile, htmlOutputFile);
  80. connection.disconnect();
  81. // 转换完之后删除word文件
  82. docInputFile.delete();
  83. return htmFileName;
  84. }
  85. /**
  86. * win下手动开启Openoffice服务
  87. * @param servicePath 服务安装位置
  88. */
  89. public static void startOpenOfficeService(String servicePath) {
  90. String command = servicePath + "program\\soffice -headless -accept=\"socket,host=127.0.0.1,port=8100;urp;\" -nofirststartwizard";
  91. try {
  92. Process pro = Runtime.getRuntime().exec(command);
  93. } catch (IOException e) {
  94. System.out.println("OpenOffice服务启动失败");
  95. }
  96. }
  97. /**
  98. * win下手动关闭OpenOffice服务
  99. */
  100. public static void shutdownOpenOfficeService() {
  101. try {
  102. Process pro = Runtime.getRuntime().exec("tasklist");
  103. Scanner in = new Scanner(pro.getInputStream());
  104. while(in.hasNext()) {
  105. String proString = in.nextLine();
  106. if(proString.contains("soffice.exe")) {
  107. String cmd = "taskkill /f /im soffice.exe";
  108. pro = Runtime.getRuntime().exec(cmd);
  109. System.out.println("soffice.exe关闭");
  110. }
  111. if(proString.contains("soffice.bin")) {
  112. String cmd = "taskkill /f /im soffice.bin";
  113. pro = Runtime.getRuntime().exec(cmd);
  114. System.out.println("soffice.bin关闭");
  115. }
  116. }
  117. } catch (IOException e) {
  118. e.printStackTrace();
  119. }
  120. }
  121. /**
  122. * 文件转换
  123. * @param inputPath 输入路径
  124. * @param outputPath 文件输出路径,文件名自动生成
  125. * @return
  126. */
  127. public boolean convert(String inputPath,String outputPath) {
  128. File file = new File(inputPath);
  129. String fileName = file.getName();
  130. boolean result = false;
  131. //判断文件后缀类型
  132. String type = "."+fileName.substring(fileName.lastIndexOf(".") + 1);
  133. try {
  134. FileInputStream fileInputStream = new FileInputStream(file);
  135. DocConverter d = new DocConverter();
  136. if(d.convert(fileInputStream, outputPath, type)!=null) {
  137. result = true;
  138. }
  139. } catch (FileNotFoundException e) {
  140. e.printStackTrace();
  141. } catch (IOException e) {
  142. e.printStackTrace();
  143. }
  144. return result;
  145. }
  146. public static void main(String s[]) {
  147. new DocConverter().convert("D:\\a.xls", "D:\\");
  148. }
  149. }

上面代码生成的pdf存储在Tomcat配置的虚拟路径的文件夹里。

然后,Adobe acrobat自行下载安装即可 

在这里要多说两句:

1.对于带有积分号等数学符号:MathType类型的doc,OpenOffice在转换时会丢失,导致文件不完整 ,这是OpenOffice自身的缺陷,目前无法避免

2.jdoconverter一定要使用2.2.2版本,否则docx,xlsx,pptx会转换失败。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/428607
推荐阅读
  

闽ICP备14008679号