作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 SAX 来解析一些 XML。在我的处理程序中 startElement()方法我正在尝试读取名为 xsi:type
的属性的值,例如:
String type = attributes.getValue("xsi:type");
但是,它始终返回 null
。这对其他一切都适用,所以我假设这是由于 namespace 前缀造成的。我怎样才能得到这个值?
最佳答案
可能这会有所帮助,请尝试使用它。这将返回找到的名称和属性值,这对于查找要用于查询的名称很有用。
if (attributes.getLength() > 0) {
for (int i = 0; i < attributes.getLength(); i++) {
System.out.print ("name: " + attributes.getQName(i)));
System.out.println(" value: " + attributes.getValue(i)));
}
}
关于java - 涉及 namespace 时从 SAX 属性获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2136590/
我是一名优秀的程序员,十分优秀!