velocity 的 escape实现

Posted 范世强的笔记(SEC-fsq)

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了velocity 的 escape实现相关的知识,希望对你有一定的参考价值。

EscapehtmlReference的escape方法调用以下方法实现: org.apache.commons.lang.Entities.HTML40.escape(writer, string);
代码如下:
public void escape(Writer writer, String str) throws IOException {
int len = str.length();

for(int i = 0; i < len; ++i) {
char c = str.charAt(i);
String entityName = this.entityName(c);
if(entityName == null) {
if(c > 127) {
writer.write("&#");
writer.write(Integer.toString(c, 10));
writer.write(59); //就是个分号
} else {
writer.write(c);
}
} else {
writer.write(38);
writer.write(entityName);
writer.write(59);
}
}

}

以上是关于velocity 的 escape实现的主要内容,如果未能解决你的问题,请参考以下文章

尝试沿y轴移动时,任何精灵都会消失

在ReactJS中捕获'escape'按键

Python 3 与 Javascript escape 传输确保数据正确方法和中文乱码解决方案

escape,encodeURI,encodeURIComponent有啥区别

Python“string_escape”与“unicode_escape”

WEB - Autoescaping, escaping, escape(转义)