使用java程式碼採用jacob的方式吧word文件轉化為pdf格式
阿新 • • 發佈:2019-01-31
此方法經本人親自測試有效;如果有多個專案採用這種方式轉化檔案並放在同一個伺服器上,可能會出現問題;
1.需要的jar包(這些jar包及dll檔案都可以在官網上下載):
注意jacob的jar包版本必須與.dll檔案匹配,且有32/64位區分,此處採用64位;
2.jacob-1.14.3-x64.dll檔案必須放在指定的路徑下,即System.getProperty("java.library.path"),程式碼中已有註釋;
package test2; import java.io.File; import java.io.IOException; import com.jacob.activeX.ActiveXComponent; import com.jacob.com.Dispatch; public class Test2{ static final int wdDoNotSaveChanges = 0;// 不儲存待定的更改。 static final int wdFormatPDF = 17;// word轉PDF 格式 // static final int ppSaveAsPDF = 32;// ppt 轉PDF 格式 public static void main(String[] args) throws IOException { String source1 = "e:\\test.doc"; String target1 = "e:\\test1.pdf"; Test2 pdf = new Test2(); pdf.change(source1, target1); } public void change(String source,String target){ //將jacob-1.14.3-x64.dll檔案放在下方輸出的地址; System.out.println(System.getProperty("java.library.path")); long start = System.currentTimeMillis(); ActiveXComponent app = null; try { app = new ActiveXComponent("Word.Application"); app.setProperty("Visible", false); Dispatch docs = app.getProperty("Documents").toDispatch(); System.out.println("開啟文件" + source); Dispatch doc = Dispatch.call(docs,// "Open", // source,// FileName false,// ConfirmConversions true // ReadOnly ).toDispatch(); System.out.println("轉換文件到PDF " + target); File tofile = new File(target); if (tofile.exists()) { tofile.delete(); } Dispatch.call(doc,// "SaveAs", // target, // FileName wdFormatPDF); Dispatch.call(doc, "Close", false); long end = System.currentTimeMillis(); System.out.println("轉換完成..用時:" + (end - start) + "ms."); } catch (Exception e) { System.out.println("========Error:文件轉換失敗:" + e.getMessage()); } finally { if (app != null) app.invoke("Quit", wdDoNotSaveChanges); } } }