Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1562367
  • 博文数量: 237
  • 博客积分: 5139
  • 博客等级: 大校
  • 技术积分: 2751
  • 用 户 组: 普通用户
  • 注册时间: 2008-11-18 14:48
文章分类

全部博文(237)

文章存档

2016年(1)

2012年(4)

2011年(120)

2010年(36)

2009年(64)

2008年(12)

分类: 嵌入式

2011-06-01 12:53:41

public static String toHTMLString(String in)  
{  
   StringBuffer out = new StringBuffer();  
     for(int i = 0; in != null && i < in.length(); i++)  
     {  
             char   c   =   in.charAt(i);  
             if   (c   ==   '\'')  
                     out.append("'");  
             else   if   (c == '\"')  
                     out.append(""");  
             else   if   (c == '<')  
                     out.append("<");  
             else   if   (c == '>')
                     out.append(">");  
             else   if   (c == '&')  
                     out.append("&");  
             else   if   (c == ' ')  
                     out.append(" ");  
             else   if   (c   ==   '\n')  
                     out.append("
");  
             else  
                     out.append(c);  
     }  
     return   out.toString();  
}
阅读(2608) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~