如何处理报价,双引号等

时间:2013-10-02 10:37:05

标签: jsp

我正在制作一个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("‘", "&lsquo;");      


    return replaced_text;
    }

}  

当我致电getTestoParsato时,我再次‘testo‘而不是&lsquo;testo&lsquo;

0 个答案:

没有答案