我想在不知道它的索引的情况下获取xml文件的属性值,因为属性在xml文件中的多个元素中重复。
这是我的xml文件
<fields>
<form name="userAdditionFrom">
</form>
</fields>
这是procrative文件
case XMLEvent.ATTRIBUTE:
//how can i know the index of attribute?
String attName = xmlReader.getAttributeValue(?????);
break;
提前完成。
阿拉
答案 0 :(得分:5)
如果是XMLStreamReader,那么getAttributeValue(int index)和getAttributeValue(String namespaceURI,String localName)可用于获取属性值。
从您的问题看来,您使用的是Event和Cursor API的混合。我附上了使用StAX链接作为参考,提供了如何使用它们的想法。
资源: