• 《Java知识应用》Java下Linux系统下word转PDF


    仅供学习,如需商用请联系开发商:https://apireference.aspose.com/java/words

    Jar包下载路径:

    链接: https://pan.baidu.com/s/1s79xMoTZ33sySXBmpoXFIg 提取码: nnmr 复制这段内容后打开百度网盘手机App,操作更方便哦

    案例:

    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>23dcc79f-44ec-4a23-be3a-03c1632404e9</SerialNumber>
      </Data>
      <Signature>0nRuwNEddXwLfXB7pw66G71MS93gW8mNzJ7vuh3Sf4VAEOBfpxtHLCotymv1PoeukxYe31K441Ivq0Pkvx1yZZG4O1KCv3Omdbs7uqzUB4xXHlOub4VsTODzDJ5MWHqlRCB1HHcGjlyT2sVGiovLt0Grvqw5+QXBuinoBY0suX0=</Signature>
    </License>

    代码如下:

    import com.aspose.words.License;
    import com.aspose.words.SaveFormat;
    
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.InputStream;
    import com.aspose.words.*;
    
    public class Doc2Pdf {
    
        /*****
         * 需要引入jar包:aspose-words-15.8.0-jdk16.jar
         * @param args
         */
        public static void main(String[] args) {
            doc2pdf("src/demo/knowledgepoints/DocToPdf/PDF/2019年全国I卷理科数学高考真题.docx","src/demo/knowledgepoints/DocToPdf/PDF/pdf1.pdf");
        }
    
        public static boolean getLicense() {
            boolean result = false;
            try {
                File file = new File("src/demo/knowledgepoints/DocToPdf/imp/license.xml"); // 新建一个空白pdf文档
                InputStream is = new FileInputStream(file); // license.xml找个路径放即可。
                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 相互转换
                long now = System.currentTimeMillis();
                System.out.println("共耗时:" + ((now - old) / 1000.0) + "秒"); // 转化用时
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }

    效果展示:

    转化后:

    This moment will nap, you will have a dream; But this moment study,you will interpret a dream.
  • 相关阅读:
    java8关于list的操作
    jdk8的.toMap()
    Mybatis中报错org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)问题解决
    springboot集成bootstrap遇到的问题
    java文件下载
    idea中mybatis自动生成代码方式
    文件读写操作inputStream转为byte[] , 将InputStream写入本地文件
    Polar transformer networks
    Fine-Grained Person Re-identification
    Person Re-identification by Contour Sketch under Moderate Clothing Change
  • 原文地址:https://www.cnblogs.com/jssj/p/11808161.html
Copyright © 2020-2023  润新知