我使用Dom创建xml文件,我无法编写标签 属性如下
<m:FC_TargetPath="SyndicationUpdated" m:FC_KeepInContent="false" rt:filterable="false">
当我使用名称和值设置属性时,但使用m:
或rt:
前缀我得到一个例外。知道如何处理吗?
这是我使用
的代码ent.setAttribute("m:FC_TargetPath", "SyndicationUpdated");
例外是
'Namespace for prefix 'm' has not been declared.
答案 0 :(得分:0)
要设置名称空间中的属性,您需要使用setAttributeNS
而不是setAttribute
,并将相应的名称空间URI传递给它。
答案 1 :(得分:0)
以下示例程序:
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
public class Dom
{
public static void main( String[] args ) throws Throwable
{
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
dbf.setNamespaceAware( true );
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.newDocument();
Element root = doc.createElement( "root" );
root.setAttribute( "xmlns:m" , "http://www.lfinance.fr/blog-rachat-credits" );
root.setAttribute( "xmlns:rt", "http://www.lfinance.fr/forum-rachat-credits" );
doc.appendChild( root );
Element elt = doc.createElement( "simple" );
elt.setAttribute( "m:FC_TargetPath" , "false" );
elt.setAttribute( "m:FC_KeepInContent", "false" );
elt.setAttribute( "rt:filterable" , "false" );
root.appendChild( doc.createTextNode( "\n\t" ));
root.appendChild( elt );
root.appendChild( doc.createTextNode( "\n" ));
TransformerFactory.newInstance().newTransformer().transform(
new DOMSource( doc ),
new StreamResult( System.out ));
}
}
输出:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<root
xmlns:m="http://www.lfinance.fr/blog-rachat-credits"
xmlns:rt="http://www.lfinance.fr/forum-rachat-credits">
<simple
m:FC_KeepInContent="false"
m:FC_TargetPath="false"
rt:filterable="false" />
</root>