为了对XML文件进行一些更改,我使用下面的代码:
public boolean run() throws Exception {
XMLReader xr = new XMLFilterImpl(XMLReaderFactory.createXMLReader()) {
public void startElement(String uri, String localName, String qName, Attributes atts) throws SAXException {
if(AddRuleReq&& qName.equalsIgnoreCase("cp:ruleset"))
{
attributeList.clear();
attributeList.addAttribute(uri, localName, "id", "int", Integer.toString(getNewRuleId()));
super.startElement(uri, localName, "cp:rule", attributeList);
attributeList.clear();
super.startElement(uri, localName, "cp:conditions", attributeList);
super.startElement(uri, localName, "SOMECONDITION", attributeList);
super.endElement(uri, localName, "SOMECONDITION");
super.endElement(uri, localName, "cp:conditions");
super.startElement(uri, localName, "cp:actions", attributeList);
super.startElement(uri, localName, "allow", attributeList);
super.characters(BooleanVariable.toCharArray(), 0, BooleanVariable.length());
super.endElement(uri, localName, "allow");
super.endElement(uri, localName, "cp:actions");
}
}
};
Source source = new SAXSource(xr, new InputSource(new StringReader(xmlString)));
stringWriter = new StringWriter();
StreamResult result = new StreamResult(stringWriter);
Transformer transformer = TransformerFactory.newInstance().newTransformer();
transformer.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "yes");
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "3");
transformer.transform(source, result);
return stringWriter.toString();
}
我已粘贴了一小部分而且有效。但差别很小。
我期望看到的是:
<cp:rule id="1">
<cp:conditions>
<SOMECONDITION/>
</cp:conditions>
<cp:actions>
<allow>
true
</allow>
</cp:actions>
</cp:rule>
我看到的是:
<cp:rule id="1">
<cp:conditions>
<SOMECONDITION xmlns="urn:ietf:params:xml:ns:common-policy"/>
</cp:conditions>
<cp:actions>
<allow xmlns="urn:ietf:params:xml:ns:common-policy">
true
</allow>
</cp:actions>
</cp:rule>
根据我的架构处理的XML也无效,并且下次无法使用。
我的问题是,我怎样才能阻止这个名称空间(如本例所示,&lt; SOMECONDITION xmlns =&#34; urn:ietf:params:xml:ns:common-policy&#34; /&gt;)添加到子元素?
提前致谢..
答案 0 :(得分:1)
您使用错误的参数调用startElement
标记的allow
方法,我很惊讶您的xml处理器没有为此抛出错误:
super.startElement(uri, localName, "allow", attributeList);
此处uri
是您作为参数获得的cp:ruleset
元素的名称空间uri,localName
是ruleset
元素的名称。正确应该是以下,使用空字符串作为命名空间uri并匹配qname和本地名称的值。
super.startElement("", "allow", "allow", attributeList);
这同样适用于您的其他startElement
/ endElement
来电,而不是
super.startElement(uri, localName, "cp:rule", attributeList);
应该是
super.startElement(uri, "rule", "cp:rule", attributeList);