我正在使用 java 解析 ccd.xml。我可以使用 java 对象访问 ccd 的每个节点/元素。
查询:当 htmlElement 进入 ccd 的任意节点时。我的 java 对象没有到达那个节点?我可以获取 templateId、title 但在到达 ccd.xml 的文本节点后,我的 java 对象无法显示表节点。
示例 ccd.xml 如下所示:
<component>
<section>
<templateId root='2.16.840.1.113883.10.20.1.9'/> <!-- Payers section template -->
<code code="48768-6" codeSystem="2.16.840.1.113883.6.1"/>
<title>Payers</title>
<text>
<table border="1" width="100%">
<thead>
<tr><th>Payer name</th><th>Policy type / Coverage type</th><th>Covered party ID</th> <th>Authorization(s)</th></tr>
</thead>
<tbody>
<tr>
<td>Good Health Insurance</td>
<td>Extended healthcare / Self</td>
<td>14d4a520-7aae-11db-9fe1-0800200c9a66</td>
<td>Colonoscopy</td>
</tr>
</tbody>
</table>
</text>
</section>
</component>
非常感谢任何帮助。