Xml文档可能会在其根元素中显示名称空间前缀声明。由于我是StaxMate的新手,我设法处理元素和元素属性的xml输入事件。但是,我从来没有得到过Namespace事件。
<?xml version="1.0" encoding="UTF-8"?>
<myRoot xmlns="http://myurl.com/myProject"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mya="http://myurl.com/myAttributes"
xsi:schemaLocation="http://myurl.com/myProject ./../../main/xsd/mySchema.xsd ">
<myElement mya:myAttribute="attribute content">
<mySubElement>subelements content</original>
</myElement>
</myRoot>
处理元素 myRoot 时如何获取xmlns命名空间?例如。为了将其中一些输出到SMOutputDocument的根元素?
答案 0 :(得分:1)
通过实验发现。以下是复制XML文档的操作 - 有点无用 - 包括所有命名空间声明。它的目的是举例说明如何处理StaxMate中的命名空间。
使用SMOutputDocument作为SMOutputContainer调用一次。光标指向输出的根元素。
之后,它会递归地探索和复制找到的所有元素。
private void processStartElement(SMInputCursor cursor, SMOutputContainer element) throws XMLStreamException {
SMOutputElement loe = element.addElement(cursor.getPrefixedName());
// add all namespace declarationss to the element
for (int i = 0; i < cursor.getStreamReader().getNamespaceCount(); i++) {
loe.predeclareNamespace(element.getNamespace(
cursor.getStreamReader().getNamespaceURI(i),
cursor.getStreamReader().getNamespacePrefix(i)));
}
for (int i = 0; i < cursor.getAttrCount(); i++) {
loe.addAttribute(
element.getNamespace(cursor.getAttrNsUri(i)),
cursor.getAttrLocalName(i),
cursor.getAttrValue(i));
}
SMInputCursor lc = cursor.childCursor();
while ((lc != null) && (lc.getNext() != null)) {
this.processStartElement(lc, loe);
}
}