XOM 从 Node 获取属性?
像这样的东西不应该起作用吗?
假设文档格式如下:
<root>
<element id = "a"></element>
</root>
Node node = doc.query("/root/element").get(0);
String id = node.getDocument().getRootElement().getAttribute("id");
当我打印根元素的值时,看起来这应该可行。这里出了什么问题?
Shouldn't something like this work?
Assuming a document formatted as such:
<root>
<element id = "a"></element>
</root>
Node node = doc.query("/root/element").get(0);
String id = node.getDocument().getRootElement().getAttribute("id");
When I print the value of the root element, it looks as if this should work. What's failing, here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将您的节点转换为元素,然后就可以开始了。
Cast your node to an Element, and you're good to go.
node.getDocument().getRootElement() 此时您拥有没有属性“id”的元素。
尝试使用 node.getAttribute("id") 代替? (假设节点不为空)
node.getDocument().getRootElement() at this point you have the element which does not have an attribute "id".
Try node.getAttribute("id") instead ? (assuming node is not null)