使用POI轉換word doc檔案

2021-08-27 16:59:01 字數 1420 閱讀 6121

使用poi轉換word doc檔案

目錄

1轉換為

html檔案

2轉換為

xml檔案 3

轉換為text檔案

在poi中還存在有針對於

word doc

檔案進行格式轉換的功能。我們可以將

word

的內容轉換為對應的

html

檔案,也可以把它轉換為底層用來描述

doc文件的

xml檔案,還可以把它轉換為底層用來描述

doc文件的

xml格式的

text

檔案。這些格式轉換都是通過

abstractwordconverter

特定的子類來完成的。

將doc文件轉換為對應的

html

文件是通過

wordtohtmlconverter

類進行的。它會盡量的利用

html

的方式來呈現原文件的樣式。示例**:

/**

* word轉換為html

* @throws exception

*/@test

public void testwordtohtml() throws exception

將doc

文件轉換為對應的

xml檔案是通過

wordtofoconverter

類進行的。它可以把

doc文件轉換為底層用來描述

doc文件的

xml文件。示例**:

/**

* word轉fo

* @throws exception

*/@test

public void testwordtofo() throws exception

將doc

文件轉換為

text

文件是通過

wordtotextconverter

來進行的。它可以把

doc文件轉換為底層用於描述

doc文件的

xml格式的

text

文件。示例**:

/**

* word轉換為text

* @throws exception

*/@test

public void testwordtotext() throws exception

(注:本文是基於

poi3.9

所寫)

POI入門白話文篇

一.poi入門 基礎演示篇 1.匯入poi需要的座標 org.apache.poigroupid poiartifactid 4.0.1version dependency org.apache.poigroupid poi ooxmlartifactid 4.0.1version dependen...

Poi工具使用

list.add new article 001 html5 文章沒有內容,就是湊字數 new date 1 list.add new article 002 html5 文章沒有內容,就是湊字數 new date 2 list.add new article 003 html5 文章沒有內容,就是...

使用POI讀取Excel時如何把數字轉換成字串

因為excel本身有格式型別,當它以數字格式存的時候我們在使用poi讀取的時候就需要呼叫與格式型別相匹配的方法 xssfworkbook wb new xssfworkbook fis xssfsheet sheet wb.getsheetat 0 int rows sheet.getphysica...