我想在我的 java 项目中绑定这个简单的 XML 文件:
<?xml version="1.0" encoding="UTF-8"?>
<itg>
<reader>
<chapter id="1">
<subchapter id="1"></subchapter>
<subchapter id="2"></subchapter>
</chapter>
<chapter id="2">
<subchapter id="1"></subchapter>
<subchapter id="2"></subchapter>
</chapter>
<chapter id="3"></chapter>
</reader>
<questions>
</questions>
</itg>
我使用 NetBeans,实际上我通过将 xml 文件解析为 ArrayList 来绑定 XML 文件,然后绑定列表。它可以工作,但是可以以更好的方式绑定xml文件吗?
谢谢!