http://www.cnblogs.com/hold/archive/2013/03/10/2952855.html
1 package com.xfzx.test.POI.main; 2 3 import java.io.File; 4 import java.util.ArrayList; 5 import java.util.Collections; 6 import java.util.Date; 7 import java.util.regex.Pattern; 8 9 import org.artofsolving.jodconverter.OfficeDocumentConverter; 10 import org.artofsolving.jodconverter.office.DefaultOfficeManagerConfiguration; 11 import org.artofsolving.jodconverter.office.OfficeManager; 12 13 public class OpenOffice2PDF { 14 15 /** 16 * office中各种格式 17 */ 18 private static final String[] OFFICE_POSTFIXS = { "doc", "docx", "xls", 19 "xlsx", "ppt", "pptx" }; 20 private ArrayList<String> Office_Formats = new ArrayList<String>(); 21 22 /** 23 * pdf格式 24 */ 25 private static final String PDF_POSTFIX= "pdf"; 26 27 /** 28 * 根据操作系统的名称,获取OpenOffice.org 3的安装目录 如我的OpenOffice.org 3安装在:C:/Program 29 * Files/OpenOffice.org 3 30 */ 31 32 public String getOfficeHome() { 33 String osName = System.getProperty("os.name"); 34 if (Pattern.matches("Linux.*", osName)) { 35 return "/opt/openoffice.org3"; 36 } else if (Pattern.matches("Windows.*", osName)) { 37 return "D:/Program Files/OpenOffice.org 3"; 38 } 39 return null; 40 } 41 /** 42 * 转换文件 43 * @param inputFilePath 44 * @param outputFilePath 45 * @param converter 46 */ 47 public void converterFile(String inputFilePath, String outputFilePath, 48 OfficeDocumentConverter converter) { 49 File inputFile=new File(inputFilePath); 50 File outputFile = new File(outputFilePath); 51 // 假如目标路径不存在,则新建该路径 52 if (!outputFile.getParentFile().exists()) { 53 outputFile.getParentFile().mkdirs(); 54 } 55 converter.convert(inputFile, outputFile); 56 System.out.println("文件:" + inputFilePath + "\n转换为\n目标文件:" + outputFile 57 + "\n成功!"); 58 } 59 60 /** 61 * 使Office2003-2007全部格式的文档(.doc|.docx|.xls|.xlsx|.ppt|.pptx) 转化为pdf文件 62 * 63 * @param inputFilePath 64 * 源文件路径,如:"e:/test.docx" 65 * @param outputFilePath 66 * 如果指定则按照指定方法,如果未指定(null)则按照源文件路径自动生成目标文件路径,如:"e:/test_docx.pdf" 67 * @return 68 */ 69 public boolean openOffice2Pdf(String inputFilePath, String outputFilePath) { 70 boolean flag = false; 71 /* 72 * 连接OpenOffice.org 并且启动OpenOffice.org 73 */ 74 DefaultOfficeManagerConfiguration config = new DefaultOfficeManagerConfiguration(); 75 // 获取OpenOffice.org 3的安装目录 76 String officeHome = getOfficeHome(); 77 config.setOfficeHome(officeHome); 78 // 启动OpenOffice的服务 79 OfficeManager officeManager = config.buildOfficeManager(); 80 officeManager.start(); 81 // 连接OpenOffice 82 OfficeDocumentConverter converter = new OfficeDocumentConverter( 83 officeManager); 84 long begin_time = new Date().getTime(); 85 File inputFile=new File(inputFilePath); 86 Collections.addAll(Office_Formats, OFFICE_POSTFIXS); 87 if ((null != inputFilePath) && (inputFile.exists())) { 88 // 判断目标文件路径是否为空 89 if (Office_Formats.contains(getPostfix(inputFilePath))) { 90 if (null == outputFilePath) { 91 // 转换后的文件路径 92 String outputFilePath_new = generateDefaultOutputFilePath(inputFilePath); 93 converterFile(inputFilePath, outputFilePath_new, converter); 94 flag = true; 95 96 } else { 97 converterFile(inputFilePath, outputFilePath, converter); 98 flag = true; 99 } 100 } 101 102 } else { 103 System.out.println("con't find the resource"); 104 } 105 long end_time = new Date().getTime(); 106 System.out.println("文件转换耗时:[" + (end_time - begin_time) + "]ms"); 107 officeManager.stop(); 108 return flag; 109 } 110 111 /** 112 * 如果未设置输出文件路径则按照源文件路径和文件名生成输出文件地址。例,输入为 D:/fee.xlsx 则输出为D:/fee_xlsx.pdf 113 */ 114 public String generateDefaultOutputFilePath(String inputFilePath) { 115 String outputFilePath = inputFilePath.replaceAll("." 116 + getPostfix(inputFilePath), "_" + getPostfix(inputFilePath) 117 + ".pdf"); 118 return outputFilePath; 119 } 120 121 /** 122 * 获取inputFilePath的后缀名,如:"e:/test.pptx"的后缀名为:"pptx" 123 */ 124 public String getPostfix(String inputFilePath) { 125 String[] p = inputFilePath.split("\\."); 126 if (p.length > 0) {// 判断文件有无扩展名 127 // 比较文件扩展名 128 return p[p.length - 1]; 129 } else { 130 return null; 131 } 132 } 133 134 public static void main(String[] args) { 135 136 OpenOffice2PDF office2pdf = new OpenOffice2PDF(); 137 office2pdf.openOffice2Pdf("D:/国家知识产权局第二届运动会拔河及田进比赛的通知.doc", 138 "D:/国家知识产权局第二届运动会拔河及田进比赛的通知_" + new Date().getTime() + "." 139 + PDF_POSTFIX); 140 office2pdf.openOffice2Pdf("D:/函件自定义调用字段_20130220_GC.xls",null); 141 } 142 143 144 }
相关推荐
Java使用OpenOffice转换Office文档为PDF是一种常见的技术需求,尤其在企业级应用中,为了保持一致性和跨平台兼容性,可能会需要将Word、Excel或PowerPoint文档转换为PDF格式。以下将详细介绍如何在Java环境中利用...
Entry.java这个类的原理是先通过OfficeToPDF.java把文档转成pdf,然后再通过Pdf2Jpg.java这个类把PDF转成JPG或者PNG,想转成什么格式图片在Pdf2Jpg.java这个类当中设置一下,代码经过测试,完全没有问题,如果碰到...
解决通过OpenOffice如何将word、excel、ppt、html、txt转换成pdf 解决如何将pdf转换成图片 解决如何将word、excel、ppt、html、txt转换成图片,之前有人传过,但不能运行,现在传个自己的,可以完美转换,谁下谁知道...
本文将详细介绍如何利用OpenOffice.org这一开源办公套件,高效地将各种类型的文档(如MS Word、Excel、PowerPoint等)转换为PDF格式。 #### 二、OpenOffice.org简介 OpenOffice.org是一款功能强大的开源办公软件...
Java程序员可以利用OpenOffice和JodConverter进行文件格式转换,通过Swftools将PDF转为SWF,最后使用FlexPaper在网页上呈现预览效果。整个过程中还需要注意工具的选择、依赖库的管理以及Web服务端的处理逻辑。
- **方法一**:通过OpenOffice + JodConverter将文档转为PDF,再用pdf2swf工具生成SWF文件,最后使用FlexPaper进行展示。 - **方法二**:利用MSOffice + JACOB完成转换,同样经过PDF到SWF再到FlexPaper的流程。 - **...
描述中提到"java利用openoffice将doc、docx、xlxs、pptx、txt文件转为PDF格式文件",这意味着项目采用Java编程语言,并结合OpenOffice工具进行文件转换。OpenOffice是一个开源的办公软件套件,它包含一个名为...
文库openoffice.org 3+swftools+flexpaper word ppt excel 等转为pdf 转为swf
本文将详细介绍如何使用Java通过JODConverter库将`.docx`, `.xlsx`, 和`.pptx`文件转换为`.pdf`格式,以及如何在实际项目中实现这个功能。 首先,`JODConverter`是一个强大的开源Java库,它利用LibreOffice或...
综上所述,实现知识库中文档在线预览功能的关键在于利用jodconverter和OpenOffice进行多格式文档到PDF的转换,再通过pdf2swf将PDF转为SWF,最后由FlashPlayer在Web页面上呈现。这种方案既解决了格式兼容问题,又保证...
1. **通过OpenOffice+JodConverter将Txt/Word/Excel/PPT转换为PDF,再由pdf2swf工具转为SWF,最后使用FlexPaper进行浏览**。这种方式比较常见,OpenOffice提供了强大的文档处理能力,JodConverter作为接口,使得转换...
- JODConverter是一个Java工具包,可以将多种格式的文档转换为其他格式,如Microsoft Office格式转为OpenDocument或PDF。 - 主要使用其中的`jodconverter-2.2.2.jar`包进行文档转换工作。 ##### 2. 软件开发过程 ...
2. **Java操作Word, Excel, PDF文档** - **操作Word**: 除了Apache POI,还可以使用OpenOffice API或者JODConverter等工具,它们允许开发者创建、修改和导出Word文档。 - **操作Excel**: Apache POI同样适用于...
本文将介绍如何在CentOS 7.4系统上配置环境并实现xlsx文件转换为txt文件。 首先,我们需要知道Linux操作系统具有多种版本,每种版本的软件安装方法可能存在差异。在这个例子中,我们以CentOS 7.4作为示例。为了完成...
3. **转换软件**:办公软件合集中提到的“转换软件”可能指的是能够将不同格式的文件互相转换的工具,例如将PDF转为Word、Excel或其他格式,或将图片转换为文本等。这些工具在处理跨平台协作或者需要特定格式文件时...
17.6 用PySequence_Fast将Python序列转为 C数组 604 17.7 用迭代器逐个访问Python序列的元素 608 17.8 从Python可调用的C函数中返回None 611 17.9 用gdb调试动态载入的C扩展 613 17.10 调试内存问题 614 第18...