posts - 325,  comments - 25,  trackbacks - 0
public static String filterHtml(String input) {
  if (input == null) {
   return null;
  }
  if (input.length() == 0) {
   return input;
  }
  input = input.replaceAll("&", "&");
  input = input.replaceAll("<", "&lt;");
  input = input.replaceAll(">", "&gt;");
  input = input.replaceAll(" ", "&nbsp;");
  input = input.replaceAll("'", "'");
  input = input.replaceAll("\"", "&quot;");
  return input.replaceAll("\n", "<br>");
 }
posted on 2008-08-17 14:38 长春语林科技 阅读(173) 评论(0)  编辑  收藏 所属分类: util

只有注册用户登录后才能发表评论。


网站导航:
 
<2008年8月>
272829303112
3456789
10111213141516
17181920212223
24252627282930
31123456

 

长春语林科技欢迎您!

常用链接

留言簿(6)

随笔分类

随笔档案

文章分类

文章档案

相册

收藏夹

搜索

  •  

最新评论

阅读排行榜

评论排行榜