我正在制作一个jsp表单来保存数据库。
我必须管理像“ " ' ‘
这样的字符,所以我正在尝试制作一个将这些字符转换为HTML代码的方法。
这是我的代码
jsp page
<jsp:useBean id="GestioneTesto" class="Jeans.GestioneTesto"/>
out.println(GestioneTesto.getTestoParsato(‘testo‘));
这是豆
public class GestioneTesto {
public String getTestoParsato(String text_to_replace){
String replaced_text = text_to_replace.replaceAll("‘", "‘");
return replaced_text;
}
}
当我致电getTestoParsato时,我再次‘testo‘
而不是‘testo‘
。