我想获取 MS Word 文档中文本框中写入的信息。我正在使用 Apache POI 来解析 word 文档。
目前,我正在迭代所有段落对象,但此段落列表不包含 TextBox 中的信息,因此我在输出中丢失了此信息。
例如
paragraph in plain text
**<some information in text box>**
one more paragraph in plain text
Run Code Online (Sandbox Code Playgroud)
我想提取什么:
<para>paragraph in plain text</para>
<text_box>some information in text box</text_box>
<para>one more paragraph in plain text</para>
Run Code Online (Sandbox Code Playgroud)
我目前得到的:
纯文本段落
纯文本中的另一段
有人知道如何使用 Apache POI 从文本框中提取信息吗?