將Office文件轉換為PDF

2021-08-15 12:23:23 字數 1171 閱讀 4892

匯入的包(pom.xml中)    

com.github.livesense

jodconverter-core

1.0.5

*  * @param sourcefile 

*            原始檔, 絕對路徑. 可以是office2003-2007全部格式的文件, office2010的沒測試. 包括.doc, 

*            .docx, .xls, .xlsx, .ppt, .pptx等. 示例: f:\\office\\source.doc 

* @param destfile 

*            目標檔案. 絕對路徑. 示例: f:\\pdf\\dest.pdf 

* @return 操作成功與否的提示資訊. 如果返回 -1, 表示找不到原始檔, 或url.properties配置錯誤; 如果返回 0, 

*         則表示操作成功; 返回1, 則表示轉換失敗 

*/  

public static void office2pdf(string sourcefile, string destfile) throws exception  

defaultofficemanagerconfiguration config = new defaultofficemanagerconfiguration();

// 獲取openoffice 的安裝目錄

string officehome = "c:/program files (x86)/openoffice 4";

config.setofficehome(officehome);

// 啟動openoffice的服務

officemanager officemanager = config.buildofficemanager();

officemanager.start();

officedocumentconverter converter = new officedocumentconverter(

officemanager);

if(!inputfile.exists())

converter.convert(inputfile, outputfile);

officemanager.stop();

doc文件轉換為pdf文件

doc格式檔案轉換為pdf檔案 doc檔案向pdf格式轉換還是比較容易的,主要通過adobe 公司提供的adobe distiller虛擬伺服器實現的,在安裝了adobe acrobat完全版後,在windows系統的印表機任務中就會新增乙個acrobat distiller印表機.現在比較流行的d...

doc文件轉換為pdf文件

doc格式檔案轉換為pdf檔案 doc檔案向pdf格式轉換還是比較容易的,主要通過adobe 公司提供的adobe distiller虛擬伺服器實現的,在安裝了adobe acrobat完全版後,在windows系統的印表機任務中就會新增乙個acrobat distiller印表機.現在比較流行的d...

pdf如何轉換為word文件

我們經常會遇到需要將pdf轉換為word文件,對於我來講,有些pdf沒有目錄,看起來非常不方便,於是就特別想轉成word,然後增加目錄,想看某一節內容時,快速查詢。這裡我總結了一些方法,後續也會不斷補充的。人工是最直接有效的方法,並且效果最好,原文是什麼格式都可以轉為什麼格式。但是也是最慢的,會占用...