日期:2014-05-20 浏览次数:20898 次
<?xml version="1.0" encoding="UTF-8"?>
<!--
########################################
@ FileName:test.xml
@ Date:2014-02-20 10:24:24
@ Editor:Kobe
@ Version:1.0.0
@ Log:这是一个测试文件
########################################
-->
<!--
########################################
@ FileName:test.xml
@ Date:2014-02-20 10:34:24
@ Editor:Garnett
@ Version:1.0.1
@ Log:这是第二个注释
########################################
-->
<student>
<name>张三</name>
<age>23</age>
<address>北京</address>
</student>
Node common=doc.createComment("注释内容");
doc.appendChild(common);
Pattern pattern= Pattern.compile("<!--([\\s\\S]*)-->");
Matcher m=pattern.matcher(xmlString);
if(m.find()){
log=xmlString.substring(m.start(), m.end());
}else{
log=null;
}