讲师回答 / JessicaJiang
楼上正解<...图片...>从图片中我们可以看出,NodeList所在的包是org.w3c.dom提供给我们的一个接口,它是不属于java集合对象的而ArrayList是集合对象的一种,两者没有什么可比性啦
2015-09-08
@馒头爷爷
if (qName.equals("book"))
bookList.add(book);
else if(!qName.equals("bookstore")){
Class<?> c = book.getClass();
try {
Method method = c.getMethod("set" + qName.substring(0, 1).toUpperCase() + qName.substring(1),String.class);
method.invoke(book, value);
} catch (Exception e) {}
}
if (qName.equals("book"))
bookList.add(book);
else if(!qName.equals("bookstore")){
Class<?> c = book.getClass();
try {
Method method = c.getMethod("set" + qName.substring(0, 1).toUpperCase() + qName.substring(1),String.class);
method.invoke(book, value);
} catch (Exception e) {}
}
2015-09-05
最赞回答 / needself
int num = attributes.getLength(); for (int i = 0; i < num ; i++) { System.out.print(localName + "元素的第" + (i + 1) + "个属性名是" + attributes.getQName(i)); System.out.println("---属性值是" + attributes.getValue(i)); }localName就是根节点,就不需要qName.equals("book...
2015-08-28