91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用Java實現Word/Excel/TXT轉PDF功能

發布時間:2021-09-27 09:48:22 來源:億速云 閱讀:738 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關如何使用Java實現Word/Excel/TXT轉PDF功能,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

1:添加maven依賴

<!--excel word txt ppt轉pdf依賴-->    <dependency>      <groupId>aspose</groupId>      <artifactId>pdf</artifactId>      <version>11.5.0</version>    </dependency>    <dependency>      <groupId>aspose</groupId>      <artifactId>words</artifactId>      <version>16.4.0</version>    </dependency>    <dependency>      <groupId>aspose</groupId>      <artifactId>cell</artifactId>      <version>8.9.2</version>    </dependency>    <dependency>      <groupId>aspose</groupId>      <artifactId>pdf</artifactId>      <version>11.5.0</version>    </dependency>

2:添加license-excel.xml文件(Resource文件夾下)

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

3:代碼如下:

3.1獲取License文件

public static boolean getLicense(){    boolean result = false;    InputStream is = null;    try{      is =UploadFiles.class.getClassLoader().getResourceAsStream("license-excel.xml");      License aposeLic = new License();      aposeLic.setLicense(is);      result = true;    }catch(Exception e){      e.printStackTrace();    }finally{      try {        is.close();      } catch (IOException e) {        // TODO Auto-generated catch block        e.printStackTrace();      }    }    return result;  }

3.2:文本文件轉碼

/* 將txt 轉換編碼  * @param file  * @author zsqing */public File saveAsUTF8(File file){    String code = "gbk";    byte[] head = new byte[3];    try {      InputStream inputStream = new FileInputStream(file);      inputStream.read(head);      if (head[0] == -1 && head[1] == -2) {        code = "UTF-16";      } else if (head[0] == -2 && head[1] == -1) {        code = "Unicode";      } else if (head[0] == -17 && head[1] == -69 && head[2] == -65) {        code = "UTF-8";      }      inputStream.close();      System.out.println(code);      if (code.equals("UTF-8")) {        return file;      }      String str = FileUtils.readFileToString(file, code);      FileUtils.writeStringToFile(file, str, "UTF-8");      System.out.println("轉碼結束");    } catch (FileNotFoundException e) {      e.printStackTrace();    } catch (IOException e) {      e.printStackTrace();    }    return file;  }

3.3:word和txt轉換pdf

/** * 將word txt轉換成pdf * @param inPath * @param outPath * @author zsqing*/public void wordAndTextToPdf(String inPath, String outPath ,String localIP,HttpServletRequest request)  {    String fileToPdfUrl="";    boolean flag = false;    File file = null;    FileOutputStream os = null;    try    {      //long old = System.currentTimeMillis();      // 新建一個空白文檔      file = new File(outPath);      file = saveAsUTF8(file);      os = new FileOutputStream(file);      // InPath是將要被轉化的文檔      com.aspose.words.Document doc = new com.aspose.words.Document(inPath);      /*       * 全面支持DOC,DOCX進行OOXML,RTF,HTML,OpenDocument,PDF,EPUB,XPS,SWF間轉換       */      doc.save(os, SaveFormat.PDF);      flag = true;      //long now = System.currentTimeMillis();      //System.out.println("共耗時:" + ((now - old) / 1000.0) + "秒"); // 轉化用時    }    catch (Exception e)    {      e.printStackTrace();    }    finally    {      try      {        if (os != null)        {          os.close();        }      }      catch (Exception e)      {        e.printStackTrace();      }      if (!flag)      {        file.deleteOnExit();      }    }  }

3.4:Excel轉換pdf

/** * 將docx轉換成pdf * @param inPath * @param outPath * @author zsqing */ public void wordToPdf(String inPath, String outPath ,String localIP,HttpServletRequest request)  {    String fileToPdfUrl="";    boolean flag = false;    File file = null;    FileOutputStream os = null;    try    {      //long old = System.currentTimeMillis();      // 新建一個空白文檔      file = new File(outPath);      file = saveAsUTF8(file);      os = new FileOutputStream(file);      // InPath是將要被轉化的文檔      com.aspose.words.Document doc = new com.aspose.words.Document(inPath);      /*       * 全面支持DOC,DOCX進行OOXML,RTF,HTML,OpenDocument,PDF,EPUB,XPS,SWF間轉換       */      doc.save(os, SaveFormat.PDF);      flag = true;      //long now = System.currentTimeMillis();      //System.out.println("共耗時:" + ((now - old) / 1000.0) + "秒"); // 轉化用時    }    catch (Exception e)    {      e.printStackTrace();    }    finally    {      try      {        if (os != null)        {          os.close();        }      }      catch (Exception e)      {        e.printStackTrace();      }      if (!flag)      {        file.deleteOnExit();      }    }  }

關于“如何使用Java實現Word/Excel/TXT轉PDF功能”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

西乌珠穆沁旗| 兴业县| 报价| 东丰县| 渝中区| 隆化县| 呼和浩特市| 迁安市| 张家口市| 固镇县| 中山市| 卢龙县| 彭州市| 龙江县| 名山县| 泗洪县| 韶关市| 冕宁县| 土默特左旗| 五指山市| 丰原市| 罗源县| 大关县| 马尔康县| 盐池县| 平凉市| 迭部县| 洱源县| 嘉鱼县| 小金县| 璧山县| 观塘区| 江油市| 和田市| 丰原市| 黑水县| 东平县| 鸡西市| 甘孜| 重庆市| 手游|