org.owasp.encoder.Encode.forXmlComment()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(1.1k)|赞(0)|评价(0)|浏览(251)

本文整理了Java中org.owasp.encoder.Encode.forXmlComment()方法的一些代码示例,展示了Encode.forXmlComment()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Encode.forXmlComment()方法的具体详情如下:
包路径:org.owasp.encoder.Encode
类名称:Encode
方法名:forXmlComment

Encode.forXmlComment介绍

[英]See #forXmlComment(String) for description of encoding. This version writes directly to a Writer without an intervening string.
[中]有关编码的说明,请参见#forxmlcoment(String)。此版本直接写入写入程序,无需插入字符串。

代码示例

代码示例来源:origin: primefaces/primefaces

/**
 * @see Encode#forXmlComment(String)
 */
public static String forXmlComment(String input) {
  return Encode.forXmlComment(input);
}

代码示例来源:origin: openmrs/openmrs-core

/**
 * Encodes for XML comments.
 *
 * @param s
 * @return Encoded String
 */
public static String encodeForXmlComment(String s) {
  return Encode.forXmlComment(s);
}

代码示例来源:origin: OWASP/owasp-java-encoder

@Override
  public void doTag() throws JspException, IOException {
    Encode.forXmlComment(getJspContext().getOut(), _value);
  }
}

代码示例来源:origin: org.owasp.encoder/encoder-jsp

@Override
  public void doTag() throws JspException, IOException {
    Encode.forXmlComment(getJspContext().getOut(), _value);
  }
}

相关文章