核心代码如下:
PDFPage page = doc.getPage(i);
// Parse page
page.startParse(e_ParsePageNormal, null, false);
// Get the text select object.
TextPage text_select = new TextPage(page, TextPage.e_ParseTextNormal);
int count = text_select.getCharCount();
if (count > 0) {
String chars = text_select.getChars(0, -1);
writer.write(chars);
}
在您获取当前页码时,即可获得Page对象,然后引入上述代码即可。