最新破解aspose-words-23.5

功能介绍

输入

  • Microsoft Word: DOC, DOCX, RTF, DOT, DOTX, DOTM, DOCM FlatOPC, FlatOpcMacroEnabled, FlatOpcTemplate, FlatOpcTemplateMacroEnabled

  • OpenOffice: ODT, OTT

  • WordprocessingML: WordML

  • Web: HTML, MHTML

  • Text: TXT

输出

  • Fixed Layout: PDF, PDF/A, XPS, OpenXPS, PostScript (PS)

  • Graphics: TIFF, JPEG, PNG, BMP, SVG, EMF, GIF

  • Web: HtmlFixed

  • Others: PCL, EPUB, XamlFixed, XamlFlow, XamlFlowPack

科学使用

文件列表

  1. aspose-words-cracked-23.5-jdk17.jar(点击下载)

  2. 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>

DocToHtmlTest.java

public class DocToHtmlTest {
    public static void main(String[] args) throws Exception {

        String workDir = "D:/tmp/word2html/";
        String output = workDir + "output/";
        String licenseFilePath = workDir + "license.xml";

        loadLicense(licenseFilePath);

        String docPath = workDir + "购物中心数字化趋势报告.docx";
        Document doc = new Document(new FileInputStream(docPath));
        doc.save(output + "Document_out.html", SaveFormat.HTML);
    }

    private static void loadLicense(String licenseFilePath) throws Exception {
        InputStream is = new FileInputStream(licenseFilePath);
        License aposeLic = new License();
        aposeLic.setLicense(is);
    }
}