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

溫馨提示×

溫馨提示×

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

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

Java實現Word/Excel/TXT轉PDF的方法

發布時間:2020-10-12 21:43:28 來源:腳本之家 閱讀:284 作者:zsq_fengchen 欄目:編程語言

引言:

       前段時間公司做的教育系統,系統需要實時記錄用戶學習課程的情況和時間,所以對一些除視頻課程之外,對一些文本文檔型課件同樣如此,初次的方案是講office相關類型的文件進行轉換Html文件,然后展示對應的html文件,PC端差不多沒問題了,但是個別文件再轉換html之后,樣式出現了錯亂,即時做了編碼轉換處理,但是還是有個別亂碼,最后改變方案,最后統一將文件轉為pdf,然后通過流的方式在前端展示,其中包括Word Excel PPT TXT PDF等文件,代碼如下:

   備注:本來是可以直接展示pdf的,但是Andior上pdf展示不了,最后統一就用IO流的方式進行讀取展示了.

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

抚顺市| 囊谦县| 黑山县| 尼玛县| 新宁县| 涞水县| 海门市| 崇明县| 中超| 武安市| 皮山县| 潜江市| 厦门市| 九龙城区| 石河子市| 宁津县| 河东区| 连城县| 彰化县| 泰来县| 始兴县| 广南县| 德州市| 泗水县| 澄江县| 当雄县| 泽库县| 五家渠市| 正定县| 陵川县| 壶关县| 张掖市| 曲水县| 治县。| 彰武县| 左云县| 班戈县| 赣榆县| 西林县| 临泉县| 林周县|