您的位置:首页 > 博客中心 > 数据库 >

html文本存入数据库,特殊字符转换

时间:2022-03-15 18:32

package Controller;

public class TranslationStr {
    public String HtmltoStr(String newText) {
        
       // newText = newText.replace("\n", "<br>");
          //textBox里的换行是用\n来表示的,如果要在HTML里显示换行要用<br>
        newText = newText.replace("<", "&lt");  //置换 <
        newText = newText.replace(">", "&gt");  //置换 >
        newText=newText.replace("/", "&frasl");
          
        return newText;    
    }
    public String StrtoHtml(String newText) {
        //newText = newText.replace("<br>", "\n");  
        newText = newText.replace("&lt", "<");    
        newText = newText.replace("&gt", ">"); 
        newText=newText.replace("&frasl","/");
        return newText;
    }

        
}

 

热门排行

今日推荐

热门手游