本文整理了Java中org.owasp.encoder.Encode.forCDATA()
方法的一些代码示例,展示了Encode.forCDATA()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Encode.forCDATA()
方法的具体详情如下:
包路径:org.owasp.encoder.Encode
类名称:Encode
方法名:forCDATA
[英]See #forCDATA(String) for description of encoding. This version writes directly to a Writer without an intervening string.
[中]有关编码的说明,请参见#forCDATA(字符串)。此版本直接写入写入程序,无需插入字符串。
代码示例来源:origin: primefaces/primefaces
/**
* @see Encode#forCDATA(String)
*/
public static String forCDATA(String input) {
return Encode.forCDATA(input);
}
代码示例来源:origin: openmrs/openmrs-core
/**
* Encodes data for an XML CDATA section.
*
* @param s
* @return Encoded String
*/
public static String encodeForCDATA(String s) {
return Encode.forCDATA(s);
}
代码示例来源:origin: OWASP/owasp-java-encoder
@Override
public void doTag() throws JspException, IOException {
Encode.forCDATA(getJspContext().getOut(), _value);
}
}
代码示例来源:origin: org.owasp.encoder/encoder-jsp
@Override
public void doTag() throws JspException, IOException {
Encode.forCDATA(getJspContext().getOut(), _value);
}
}
内容来源于网络,如有侵权,请联系作者删除!