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>
どんな助けでも大歓迎です。