gpt4 book ai didi

java - 如何通过SAX解析XML并创建树列表?

转载 作者:太空宇宙 更新时间:2023-11-04 08:30:41 27 4
gpt4 key购买 nike

我已经学习了有关 java SAX 解析器的教程,现在我需要创建 XML 文件的树列表,如下所示:

<course>
<chapter>
<title>chapter one of course one</title>
<content> .... </content>
</chapter>

<chapter>
<title>chapter two of course one</title>
<content> .... </content>
</chapter>
</course>

然后我如何创建这样的数据结构:

string lessons[][] = {
{"chapter one of course one", "chapter two of course one"},
{"chapter one of course two", "chapter two of course two", "chapter tree of course two"},
....
....

}

最佳答案

对于您正在寻找的数据结构类型,JDK 中没有现成的支持。您需要的是 MultimapGuava library 提供了这个数据结构。您可以使用该库(我推荐)或构建您自己的库。

此外,如果您正在使用 SAX 读取元素内容,请确保在 read my answer SO 帖子中添加 this

JAVA SAX parser split calls to characters()

关于java - 如何通过SAX解析XML并创建树列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7599100/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com