jsp页面显示富文本框内容

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

1、未处理

140154_bFWr_3669033.png

2、处理后

140239_Fy7X_3669033.png

 

相关代码:

(1)jar包 140324_z0yk_3669033.png

(2)前端代码


    ${fns:removeHtml(algorithmNeed.needContent)}

(3)工具类

/**
 * 富文本内容转换
 * @param html
 * @return
 */
   public static String removeHtml(String html){
   String unescape = StringEscapeUtils.unescapeHtml4(html);
   String text  = Jsoup.clean(unescape, Whitelist.simpleText());
   return text;
}

(4)fns.tld文件配置


  富文本内容转换
  removeHtml
  com.common.utils.StringUtils
  java.lang.String removeHtml(java.lang.String)
  ${fns:removeHtml(html)}

转载于:https://my.oschina.net/u/3669033/blog/1606104

你可能感兴趣的:(jsp页面显示富文本框内容)