我試圖修改現有代碼,使用apache POI將MS word文檔轉換爲文本。我是這個Apache POI API的新手。有GetTableLevel()方法org.apache.poi.hwpf.usermodel.Paragraph類,它返回一些整數值。org.apache.poi.hwpf.usermodel.Paragraph的getTableLevel()方法
對於某些表,此方法返回值1,對於其他一些表返回0.我無法理解此行爲。
我查看了此API的JavaDoc here,但沒有關於此方法的返回值的說明。
任何人都可以告訴我什麼是這種方法可能的返回值?
下面是代碼片段它調用GetTableLevel()方法:
for (int x = 0; x < lenParagraph; x++) {
Paragraph paragraph = range.getParagraph(x);
int tableLevel = paragraph.getTableLevel();
請指教!