Java用OpenOffice將word轉換為PDF


本文在原文的基礎上有所修改,原文請參考:

http://titanseason.iteye.com/blog/1471606 由於此blog不支持附件附件請到此處下載

http://my.oschina.NET/bigyuan/blog/165464

1. 需要用的軟件

    OpenOffice 下載地址http://www.openoffice.org/

    JodConverter 下載地址http://sourceforge.net/projects/jodconverter/files/JODConverter/,也可以直接從附件里面下載

  

2.啟動OpenOffice的服務

 

安裝完openoffice,安裝服務

cd C:\Program Files (x86)\OpenOffice 4\program

執行

soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard

查看是否安裝成功,查看端口對應的pid

    netstat -ano|findstr "8100"

 查看pid對應的服務程序名

    tasklist|findstr "pid值"

 

 

3.將JodConverter相關的jar包添加到項目中   

  

4. 下面是實現代碼

附件里面有現成的可以用的項目示例,直接導入eclipse就可以運行

 

 1 本文在原文的基礎上有所修改,原文請參考:
 2 
 3 http://titanseason.iteye.com/blog/1471606 由於此blog不支持附件附件請到此處下載
 4 http://my.oschina.NET/bigyuan/blog/165464
 5 1. 需要用的軟件
 6 
 7     OpenOffice 下載地址http://www.openoffice.org/
 8 
 9     JodConverter 下載地址http://sourceforge.net/projects/jodconverter/files/JODConverter/,也可以直接從附件里面下載
10 
11   
12 2.啟動OpenOffice的服務
13 
14 
15 安裝完openoffice,安裝服務
16 
17 cd C:\Program Files (x86)\OpenOffice 4\program
18 
19 執行
20 
21 soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard
22 
23 查看是否安裝成功,查看端口對應的pid
24 
25     netstat -ano|findstr "8100"
26 
27  查看pid對應的服務程序名
28 
29     tasklist|findstr "pid值"
30 
31  
32 3.將JodConverter相關的jar包添加到項目中   
33   
34 4. 下面是實現代碼
35 附件里面有現成的可以用的項目示例,直接導入eclipse就可以運行
36 
37 [java] view plain copy
38 /** 
39      * 將Office文檔轉換為PDF. 運行該函數需要用到OpenOffice, OpenOffice下載地址為 
40      * http://www.openoffice.org/ 
41      *  
42      * <pre> 
43      * 方法示例: 
44      * String sourcePath = "F:\\office\\source.doc"; 
45      * String destFile = "F:\\pdf\\dest.pdf"; 
46      * Converter.office2PDF(sourcePath, destFile); 
47      * </pre> 
48      *  
49      * @param sourceFile 
50      *            源文件, 絕對路徑. 可以是Office2003-2007全部格式的文檔, Office2010的沒測試. 包括.doc, 
51      *            .docx, .xls, .xlsx, .ppt, .pptx等. 示例: F:\\office\\source.doc 
52      * @param destFile 
53      *            目標文件. 絕對路徑. 示例: F:\\pdf\\dest.pdf 
54      * @return 操作成功與否的提示信息. 如果返回 -1, 表示找不到源文件, 或url.properties配置錯誤; 如果返回 0, 
55      *         則表示操作成功; 返回1, 則表示轉換失敗 
56      */  
57     public static int office2PDF(String sourceFile, String destFile) {  
58         try {  
59             File inputFile = new File(sourceFile);  
60             if (!inputFile.exists()) {  
61                 return -1;// 找不到源文件, 則返回-1  
62             }  
63   
64             // 如果目標路徑不存在, 則新建該路徑  
65             File outputFile = new File(destFile);  
66             if (!outputFile.getParentFile().exists()) {  
67                 outputFile.getParentFile().mkdirs();  
68             }  
69               
70             // connect to an OpenOffice.org instance running on port 8100  
71             OpenOfficeConnection connection = new SocketOpenOfficeConnection(  
72                     "127.0.0.1", 8100);  
73             connection.connect();  
74   
75             // convert  
76             DocumentConverter converter = new OpenOfficeDocumentConverter(  
77                     connection);  
78             converter.convert(inputFile, outputFile);  
79   
80             // close the connection  
81             connection.disconnect();  
82   
83             return 0;  
84         } catch (FileNotFoundException e) {  
85             e.printStackTrace();  
86             return -1;  
87         } catch (ConnectException e) {  
88             e.printStackTrace();  
89         } catch (IOException e) {  
90             e.printStackTrace();  
91         }  
92   
93         return 1;  
94     } 

http://www.xwcms.net/xwcms/download.jsp?fileAnnexId=c96201c7-f42d-4e28-8560-a389365ba906&articleContentId=20140629170446171

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM