为了账号安全,请及时绑定邮箱和手机立即绑定

用Java转义HTML的推荐方法

用Java转义HTML的推荐方法

函数式编程 2019-06-24 16:25:08
用Java转义HTML的推荐方法有没有推荐的逃跑方法<, >, "和&在普通Java代码中输出HTML时的字符?(除手动执行以下操作外)。String source = "The less than sign (<) and ampersand (&) must be escaped before using them in HTML"; String escaped = source.replace("<", "&lt;").replace("&", "&amp;"); // ...
查看完整描述

3 回答

?
慕莱坞森

TA贡献1810条经验 获得超4个赞

StringEscapeUtils从…阿帕奇公域朗:

import static org.apache.commons.lang.StringEscapeUtils.escapeHtml;
// ...String source = "The less than sign (<) and ampersand (&) must be escaped before using them in HTML";String escaped = escapeHtml(source);

第3版:

import static org.apache.commons.lang3.StringEscapeUtils.escapeHtml4;// ...String escaped = escapeHtml4(source);


查看完整回答
反对 回复 2019-06-24
?
沧海一幻觉

TA贡献1824条经验 获得超5个赞

ApacheCommons的另一种选择:使用春天HtmlUtils.htmlEscape(String input)方法。


查看完整回答
反对 回复 2019-06-24
  • 3 回答
  • 0 关注
  • 1655 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信