我的目标是从不同的提问者文档文件中制作 xml 文件。
例如。
Interviewer Name: Mr. K </br>
Street: BD
Company: ABC
Mr. K: What is your Name? What is your father name?
Mr. R: My name is R.
My father name is Z.
Mr. K: What is your hobby?
Mr. R: I like to play football.
......................
等等。
现在,我想从 doc 文件中解析它并转换为 xml 文件。xml 文件如下所示
<interview>
<information>
<p>Interviewer Name: Mr. K</p>
<p>Street: BD </p>
<p>Company: ABC</p>
</information>
<question><p>What is your Name? What is your father name?</p></question>
<answer>
<p>My name is R.</p>
<p>My father name is Z. </p>
</answer>
<question><p>What is your hobby?</p></question>
<answer>
<p>I like to play football.</p>
<p>.......</p>
</answer>
</interview>
代码在这里
我使用 POI api 来读取 doc 文件和 DOM api 来创建 XML。但我的主要问题是我可以识别问题、答案和信息块的算法。你能给我一些想法吗?