发布网友 发布时间:2022-04-11 05:41
共3个回答
懂视网 时间:2022-04-11 10:02
Controller; public class TranslationStr { public String HtmltoStr(String newText) { // newText = newText.replace(" ", "<br>"); //textBox里的换行是用 来表示的,如果要在HTML里显示换行要用<br> newText = newText.replace("<", "<"); //置换 < newText = newText.replace(">", ">"); //置换 > newText=newText.replace("/", "&frasl"); return newText; } public String StrtoHtml(String newText) { //newText = newText.replace("<br>", " "); newText = newText.replace("<", "<"); newText = newText.replace(">", ">"); newText=newText.replace("&frasl","/"); return newText; } }
html文本存入数据库,特殊字符转换
标签:col 字符转换 html文本 replace ati 数据库 htm 数据 div
热心网友 时间:2022-04-11 07:10
FUNCTION txtToURL(TextValue)热心网友 时间:2022-04-11 08:28
将内容中的字符转换为html标记