java語言通過Aspose元件 實現word轉pdf、png、html..
阿新 • • 發佈:2019-01-07
:使用Aspose元件可以實現word向DOC, DOCX, OOXML, RTF HTML,OpenDocument, PDF,EPUB, XPS, SWF 轉換
由於基本方法都一樣,在此我只展示word轉pdf的功能
前期準備:
- MyEclipse;
- aspectjweaver-1.5.4.jar
- aspose-words-16.6.0-jdk16.jar
- aspose-words版本下對應的license.xml檔案(網上好多不一樣的檔案,最後發現好像是對應版本的,此檔案是破解Aspose,解決Aspose轉其他檔案產生的水印問題)
程式碼實現:
import java.io.File; import java.io.FileOutputStream; import java.io.InputStream; import org.aspectj.weaver.ast.Test; import com.aspose.words.Document; import com.aspose.words.License; import com.aspose.words.SaveFormat; /** * @author XXX * */ public class Word2PdfUtil { /** * @param args */ public static void main(String[] args) { // TODO 自動生成的方法存根 doc2pdf("D://ImageTest//0054.doc", "D://ImageTest//0054.pdf"); //測試成功 //doc2png("D://ImageTest//0054.doc", "D://ImageTest//0054.png"); //測試通過 // pdf2doc("D://ImageTest//0054.pdf", "D://ImageTest//0056.doc"); } public static boolean getLicense() { boolean result = false; try { InputStream is = Test.class.getClassLoader().getResourceAsStream("license.xml"); // license.xml應放在..\WebRoot\WEB-INF\classes路徑下 System.out.println(Test.class.getClassLoader().getResource("").getPath()); License aposeLic = new License(); aposeLic.setLicense(is); result = true; } catch (Exception e) { e.printStackTrace(); } return result; } public static void doc2pdf(String inPath, String outPath) { if (!getLicense()) { // 驗證License 若不驗證則轉化出的pdf文件會有水印產生 return; } try { long old = System.currentTimeMillis(); File file = new File(outPath); // 新建一個空白pdf文件 FileOutputStream os = new FileOutputStream(file); Document doc = new Document(inPath); // Address是將要被轉化的word文件 doc.save(os, SaveFormat.PDF);// 全面支援DOC, DOCX, OOXML, RTF HTML, // OpenDocument, PDF, // EPUB, XPS, SWF 相互轉換 // Document doc = new Document(getMyDir() + "Document.doc"); // doc.save(getMyDir() + "Document Out.html"); long now = System.currentTimeMillis(); System.out.println("共耗時:" + ((now - old) / 1000.0) + "秒"); // 轉化用時 } catch (Exception e) { e.printStackTrace(); } }
注:如果要實現word轉png,直接修改兩處
doc.save(os, SaveFormat.PNG);
doc2pdf("D://ImageTest//0054.doc", "D://ImageTest//0054.pdf"); //測試成功
配置檔案license.xml:
<License> <Data> <Products> <Product>Aspose.Total for Java</Product> <Product>Aspose.Words for Java</Product> </Products> <EditionType>Enterprise</EditionType> <SubscriptionExpiry>20991231</SubscriptionExpiry> <LicenseExpiry>20991231</LicenseExpiry> <SerialNumber>8bfe198c-7f0c-4ef8-8ff0-acc3237bf0d7</SerialNumber> </Data> <Signature>sNLLKGMUdF0r8O1kKilWAGdgfs2BvJb/2Xp8p5iuDVfZXmhppo+d0Ran1P9TKdjV4ABwAgKXxJ3jcQTqE/2IRfqwnPf8itN8aFZlV3TJPYeD3yWE7IT55Gz6EijUpC7aKeoohTb4w2fpox58wWoF3SNp6sK6jDfiAUGEHYJ9pjU=</Signature> </License>
結果截圖:
結論
主要還是license.xml檔案,當然如果不想清楚水印到時無所謂。另外就是本人一直想實現pdf轉word,可惜目前獲得的word 都是純文字型別,從意義上來講是不可行的,如果在這一方面有想法的夥伴給我指點指點。