前提:已经知道book节点有且只能有1个id属性
将book节点进行强制类型转换,转换成Element类型
//Element bookt = (Element) bookList.item(i);
//通过getAttribute("id")方法获取属性值
String attrValue = bookt.getAttribute("type");
System.out.println("type属性的属性值为" + attrValue);
这里book标签有多个属性也是可以的
将book节点进行强制类型转换,转换成Element类型
//Element bookt = (Element) bookList.item(i);
//通过getAttribute("id")方法获取属性值
String attrValue = bookt.getAttribute("type");
System.out.println("type属性的属性值为" + attrValue);
这里book标签有多个属性也是可以的
2015-09-14
讲师回答 / JessicaJiang
楼上正解<...图片...>从图片中我们可以看出,NodeList所在的包是org.w3c.dom提供给我们的一个接口,它是不属于java集合对象的而ArrayList是集合对象的一种,两者没有什么可比性啦
2015-09-08