Java by API/javax.persistence/NamedNodeMap

Материал из Java эксперт
Версия от 14:34, 31 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

NamedNodeMap: getLength()

  

import java.io.IOException;
import org.w3c.dom.Document;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.SAXException;
import com.sun.org.apache.xerces.internal.parsers.DOMParser;
public class Main {
  public static void main(String args[]) throws IOException, SAXException {
    DOMParser parser = new DOMParser();
    parser.parse("games.xml");
    Document dom = parser.getDocument();
    NodeList games = dom.getElementsByTagName("game");
    for (int i = 0; i < games.getLength(); i++) {
      Node aNode = games.item(i);
      System.out.println(aNode.getFirstChild().getNodeValue());
      NamedNodeMap attributes = aNode.getAttributes();
      for (int a = 0; a < attributes.getLength(); a++) {
        Node theAttribute = attributes.item(a);
        System.out.println(theAttribute.getNodeName() + "=" + theAttribute.getNodeValue());
      }
    }
  }
}





NamedNodeMap: item(int index)

  

import java.io.IOException;
import org.w3c.dom.Document;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.SAXException;
import com.sun.org.apache.xerces.internal.parsers.DOMParser;
public class Main {
  public static void main(String args[]) throws IOException, SAXException {
    DOMParser parser = new DOMParser();
    parser.parse("games.xml");
    Document dom = parser.getDocument();
    NodeList games = dom.getElementsByTagName("game");
    for (int i = 0; i < games.getLength(); i++) {
      Node aNode = games.item(i);
      System.out.println(aNode.getFirstChild().getNodeValue());
      NamedNodeMap attributes = aNode.getAttributes();
      for (int a = 0; a < attributes.getLength(); a++) {
        Node theAttribute = attributes.item(a);
        System.out.println(theAttribute.getNodeName() + "=" + theAttribute.getNodeValue());
      }
    }
  }
}