我正在尝试将在StringBuilder中构建XML的一些代码转换为使用dom4j。
代码的一部分正在生成类似于此结构的内容:
<foo myattribute="bar">i am some text<aninnertag>false</aninnertag>
(more text specific stuff <atag>woot</atag>)
and (another section <atag>woot again</atag> etc)
</foo>
我正在试图找出如
我对Maven是非常非常陌生的。我得到以下错误
The following artifacts could not be resolved: stax:stax:jar:1.0, stax:stax-ri:jar:1.0, clover:clover:jar:1.3-rc4: Failure to find stax:stax:jar:1.0 in http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update
我正在使用dom4j在Java中创建XML字符串。有这样一句话:"the age > 10 and number <11“。
我执行以下代码
String wholeText = "the age > 10 and number < 11.";
Element text = section.addElement("text");
text.addText(wholeText);
当我显示文本内容时,它被转换为
"the age > 10 and number < 11."
"