我需要在我的 Android 应用程序中解析 XML 文件。我不知道它有多少个节点

发布于 2024-12-23 13:35:20 字数 1021 浏览 0 评论 0原文

我的活动类如下所示:

AssetManager assetmgr= getAssets();         
String list[] = assetmgr.list("subdir");    

if (list != null) {
    DocumentBuilder builder =DocumentBuilderFactory.newInstance().newDocumentBuilder();
    Document doc = builder.parse(getAssets().open("subdir/fullSurvey.xml"));

xml 对象类如下所示:

NodeList root = doc.getElementsByTagName("root");
NodeList nlQuestions = root.item(0).getChildNodes();

QuestionObject[] allQuestions = new QuestionObject[nlQuestions.getLength()];

for (int i = 0; i < nlQuestions.getLength(); i++) {
    Node question =  nlQuestions.item(i);
    NodeList childNodes = question.getChildNodes();

    QuestionObject x = new QuestionObject();

    for (int j = 0; j < childNodes.getLength(); j++) {
        Node child =  childNodes.item(j);               

        if (child.getNodeName() !="#text") {
            Questions t = Questions.valueOf(child.getNodeName());
            // etc.

我不知道如何根据属性值解析 xml 文件

My activity class look like this:

AssetManager assetmgr= getAssets();         
String list[] = assetmgr.list("subdir");    

if (list != null) {
    DocumentBuilder builder =DocumentBuilderFactory.newInstance().newDocumentBuilder();
    Document doc = builder.parse(getAssets().open("subdir/fullSurvey.xml"));

xml object class looks like this:

NodeList root = doc.getElementsByTagName("root");
NodeList nlQuestions = root.item(0).getChildNodes();

QuestionObject[] allQuestions = new QuestionObject[nlQuestions.getLength()];

for (int i = 0; i < nlQuestions.getLength(); i++) {
    Node question =  nlQuestions.item(i);
    NodeList childNodes = question.getChildNodes();

    QuestionObject x = new QuestionObject();

    for (int j = 0; j < childNodes.getLength(); j++) {
        Node child =  childNodes.item(j);               

        if (child.getNodeName() !="#text") {
            Questions t = Questions.valueOf(child.getNodeName());
            // etc.

I dont know how to parse xml file according to attribute value

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

祁梦 2024-12-30 13:35:20

不知道很多XML解析器都会根据属性值进行遍历。大多数处理节点、节点列表等。您可能必须自己读入所有节点并按属性值进行哈希处理。

I don't know that many XML parsers will traverse according to attribute values. Most deal with nodes, nodelists, etc. You may have to read in all the nodes and hash by the attribute values yourself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文