【Foxit PDF SDK】福昕GSDK如何获取PDF文档中所有的字符?

您可以参考以下示例代码:

TextPage textpage = new TextPage(page, e_ParseTextNormal);

int nCharCount = textpage.getCharCount();

String texts = textpage.getChars(0, nCharCount);