6

嗨,我想获取 XML 中所有标签的列表,如果某些标签带有特定属性,我还想要该属性的值。例如这里是一个具体的例子,

<?xml version="1.0" encoding="utf-8"?>
<bbc.mobile.news.view.AVGalleryView android:background="@drawable/gallery_item_selector" android:padding="2.0dip" android:focusable="true" android:layout_width="139.0dip" android:layout_height="130.0dip"
  xmlns:android="http://schemas.android.com/apk/res/android">
    <bbc.mobile.news.view.NewsImageView android:id="@id/galleryItemView" android:background="#00000000" android:padding="0.0dip" android:layout_width="@dimen/thumbnail_width" android:layout_height="@dimen/thumbnail_height" />
    <TextView android:textSize="13.0sp" android:textColor="@color/thumbnail_text" android:ellipsize="end" android:id="@id/articleTitleId" android:background="@color/thumbnail_text_bg" android:paddingLeft="5.0dip" android:paddingTop="2.0dip" android:paddingBottom="5.0dip" android:layout_width="139.0dip" android:layout_height="50.0dip" android:maxLines="2" android:layout_below="@id/galleryItemView" />
    <ImageView android:layout_gravity="center_vertical" android:id="@id/avIconView" android:background="#99000000" android:duplicateParentState="true" android:layout_width="40.0dip" android:layout_height="40.0dip" android:src="@drawable/icon_playvideo_selected" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" />
</bbc.mobile.news.view.AVGalleryView>

我对父子关系不感兴趣,如果存在父子关系,我想迭代到最深的孩子。如果存在于特定元素中,我还想要android:idandroid:name属性值。

问题是您无法知道父子关系的深度以及它在 xml 中的位置。而且您以前也不知道标签名称。我可以考虑在我的代码中使用递归,但我相信有一个更简单的解决方案

4

2 回答 2

16

我找到了解决方案,很简单,以前不知道这样getElementsByTagName("*")做,这是我的代码,

    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = dbf.newDocumentBuilder();
    Document doc = db.parse(file);
    doc.getDocumentElement().normalize();
    System.out.println("Root element " + doc.getDocumentElement().getNodeName());

    NodeList nodeList=doc.getElementsByTagName("*");
    for (int i=0; i<nodeList.getLength(); i++) 
    {
        // Get element
        Element element = (Element)nodeList.item(i);
        System.out.println(element.getNodeName());
    }

我在这里找到了解决方案

于 2012-10-11T03:21:11.510 回答
0

P basak 的回答是完美的。我在下面的代码中使用了 P basak 引用的 url。

import java.io.*;
import org.w3c.dom.*;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;

public class XMLToTags {

    public static void main(String[] args) {

        try {
            BufferedReader bf = new BufferedReader(
              new InputStreamReader(System.in));
            System.out.print("Enter XML File name: ");
            String xmlFile = bf.readLine();
            File file = new File(xmlFile);
            if(file.exists()){

                DocumentBuilderFactory factory = 
                  DocumentBuilderFactory.newInstance();

                DocumentBuilder builder = factory.newDocumentBuilder();
                org.w3c.dom.Document doc = builder.parse(xmlFile);

                NodeList list = doc.getElementsByTagName("*");
                System.out.println("XML Elements: ");
                for (int i=0; i<list.getLength(); i++) {

                    Element element = (Element)list.item(i);
                    System.out.println(element.getNodeName());
                }
            }
            else{
                    System.out.print("File not found!");
                }
            }
        catch (Exception e) {
            System.exit(1);
        }
    }    
}
于 2017-02-04T11:47:43.730 回答