从响应中删除Html内容

时间:2014-08-26 06:26:52

标签: java html spring-security

我们需要从服务器通过JAVA代码创建的HTML响应中删除特定字符串。例如,我需要在将响应发送到客户端之前从HTML响应中删除comment标记。任何帮助将不胜感激..

1 个答案:

答案 0 :(得分:0)

试试这个

int lowerIndex = <response String>.indexOf('<!--'));
int upperIndex = <response String>.indexOf('-->'));

您将获得评论标记的开始和结束索引。 然后就可以了

String newString = <responseString>.substring(0,lowerIndex)+<responseString>.substring(upperIndex)