html = html.replaceAll("<!--(.*?)-->", "");
这样可能是不够的,因为注释的部分有可能多行,这种的只能去掉单行注释。
html.replaceAll("<!--(.|[\r\n])*?-->","");这样的就可以把不论多行的还是单行的都去掉。
html = html.replaceAll("<!--(.*?)-->", "");
这样可能是不够的,因为注释的部分有可能多行,这种的只能去掉单行注释。
html.replaceAll("<!--(.|[\r\n])*?-->","");这样的就可以把不论多行的还是单行的都去掉。