我的Xml文件如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pointList SYSTEM "point.dtd">
<pointList>
<point unit="mm">
<x>2</x>
<y>3</y>
</point>
<point unit="cm">
<x>9</x>
<y>3</y>
</point>
<point unit="px">
<x>4</x>
<y>7</y>
</point>
</pointList>
当我尝试获取标记点的属性时:
import java.io.File;
import java.io.IOException;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.SAXException;
public class TryXml {
public static void main (String [] args) {
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = null;
Document doc = null;
try {
builder = factory.newDocumentBuilder();
}
catch (ParserConfigurationException e){
System.out.println(e.getMessage());
}
File f = new File("p1.xml");
try {
doc=builder.parse(f);
}
catch (SAXException e){
e.printStackTrace();
}
catch (IOException e){
e.printStackTrace();
}
Element root = doc.getDocumentElement();
System.out.println(root.getTagName());
System.out.println("****************");
NodeList nList = root.getChildNodes();
for (int i=0;i<nList.getLength();i++) {
if(nList.item(i) instanceof Element)
System.out.println(nList.item(i).getAttributes());
}
}
}
我得到的就是地址:
com.sun.org.apache.xerces.internal.dom.AttributeMap@3214512e
com.sun.org.apache.xerces.internal.dom.AttributeMap@53ddbcb1
com.sun.org.apache.xerces.internal.dom.AttributeMap@28f337b
任何人都可以给我一个关于如何获得点的属性以及其他内部标签的提示吗?
答案 0 :(得分:1)
您可以使用以下内容替换println:
System.out.println(((Element) nList.item(i)).getAttribute("unit"));
这应该为您提供当前元素的“unit”属性。
答案 1 :(得分:0)
使用,
“元素root = doc.getElementByTagName(”pointList“);”
代替,
“元素root = doc.getDocumentElement();”
答案 2 :(得分:0)
Element.getAttributes()
将列出Element
中的所有属性。如果您事先知道属性的名称并且只想获取其值,请改用Element.getAttribute(String)
。
如果您需要获取子元素,请使用Element.getChildNodes()
。要将文字放在Element
内,或更具体地说是Node
内,请使用getNodeValue()
。
例如:
NodeList nList = root.getChildNodes();
String out = "";
for (int i=0;i<nList.getLength();i++) {
// Assuming all first-level tags are <point>
Element point = (Element) nList.item(i);
String unit = point.getAttribute("unit");
out += "point ";
for (int y=0;y<point.getChildNodes().getLength();y++){
Node child = point.getChildNodes().item(y);
// String nodeName = child.getNodeName();
String nodeValue = child.getNodeValue();
out += nodeValue;
}
out += unit;
out += ", ";
}
将输出point 23mm, point 93cm, point 47px,
。
答案 3 :(得分:0)
这篇文章getting xml attribute with java做了你想要实现的目标。它教授常规的xml解析和操作。它还检索属性。
祝你好运!