我正在尝试通过如下结构的 XML 文件进行解析。我想要实现的是将其转换为要在 MySQL 中使用的表格式。因此,例如,在这种情况下,我将有一个这样的表,其列格式具有以下示例行:
name | industry_permid | trbc_code | mnemonic
Juvenile Products & Accessories | 4294951612 | 5320501015 | NULL
Life & Health Insurance | 4294952862 | 55301030| LINS
我的 XML 文件:
<conceptSet>
<concept>
<conceptId qcode="B:1389" />
<type qcode="cptType:2" />
<sameAs qcode="P:4294951612" />
<name role="nameRole:main" xml:lang="en">Juvenile Products & Accessories</name>
<broader qcode="B:199" />
<rtr:stage current="stg:live" />
<sameAs qcode="TRBC-2012-Hierarchical-ID:5320501015" />
</concept>
<concept>
<conceptId qcode="B:139" />
<type qcode="cptType:2" />
<sameAs qcode="P:4294952862" />
<name role="nameRole:mnemonic" xml:lang="en">LINS</name>
<name role="nameRole:main" xml:lang="en">Life & Health Insurance</name>
<broader qcode="B:136" />
<rtr:stage current="stg:live" />
<sameAs qcode="TRBC-2012-Hierarchical-ID:55301030" />
</concept>
</conceptSet>
问题是每当我尝试访问此 XML 树中的元素时,我只会得到带有名称标签的元素。我不知道如何在没有像 qcodes 之类的标签的情况下访问元素。如果有帮助,我正在使用默认的 Java XML 解析器。
这是我到目前为止的代码,每次我尝试获取属性时都会打印出 null 。
File mapping = new File("blah.xml");
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
Document doc = dBuilder.parse(mapping);
doc.getDocumentElement().normalize();
NodeList nodeList = doc.getElementsByTagName("concept");
for (int i = 0; i < nodeList.getLength(); i++) {
System.out.println(nodeList.item(i).getAttributes().getNamedItem("qcode"));
}