我是一个 php 人,但我必须在 JSP 中做一些小项目。我想知道 JSP 中是否有与 htmlentities 函数(php 的)等价的函数。
Matias
问问题
7196 次
3 回答
8
公共静态字符串 stringToHTMLString(String string) {...
commons-lang库中的实用程序也是如此:
org.apache.commons.lang.StringEscapeUtils.escapeHtml
只需将其导出到自定义 tld - 您将获得一个方便的 jsp 方法。
于 2012-05-29T10:20:12.900 回答
3
public static String stringToHTMLString(String string) {
StringBuffer sb = new StringBuffer(string.length());
// true if last char was blank
boolean lastWasBlankChar = false;
int len = string.length();
char c;
for (int i = 0; i < len; i++)
{
c = string.charAt(i);
if (c == ' ') {
// blank gets extra work,
// this solves the problem you get if you replace all
// blanks with , if you do that you loss
// word breaking
if (lastWasBlankChar) {
lastWasBlankChar = false;
sb.append(" ");
}
else {
lastWasBlankChar = true;
sb.append(' ');
}
}
else {
lastWasBlankChar = false;
//
// HTML Special Chars
if (c == '"')
sb.append(""");
else if (c == '&')
sb.append("&");
else if (c == '<')
sb.append("<");
else if (c == '>')
sb.append(">");
else if (c == '\n')
// Handle Newline
sb.append("<br/>");
else {
int ci = 0xffff & c;
if (ci < 160 )
// nothing special only 7 Bit
sb.append(c);
else {
// Not 7 Bit use the unicode system
sb.append("&#");
sb.append(new Integer(ci).toString());
sb.append(';');
}
}
}
}
return sb.toString();
}
于 2008-11-30T03:20:59.260 回答
1
我建议直接在 JSP 中使用 escapeXml 设置为 JSTL 的 true 属性
<c:out value="${string}" escapeXml="true" />
于 2014-07-29T19:10:40.173 回答