本文整理了Java中org.pentaho.di.core.Const.escapeHtml()
方法的一些代码示例,展示了Const.escapeHtml()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Const.escapeHtml()
方法的具体详情如下:
包路径:org.pentaho.di.core.Const
类名称:Const
方法名:escapeHtml
[英]Escape HTML content. i.e. replace characters with &values;
[中]转义HTML内容。i、 e.将字符替换为&个值;
代码示例来源:origin: pentaho/pentaho-kettle
public static String escapeHTML( ValueMetaInterface metaA, Object dataA ) {
if ( dataA == null ) {
return null;
}
return Const.escapeHtml( dataA.toString() );
}
代码示例来源:origin: pentaho/pentaho-kettle
public static String escapeHtml( Context actualContext, Scriptable actualObject, Object[] ArgList,
Function FunctionContext ) {
if ( ArgList.length == 1 ) {
return Const.escapeHtml( Context.toString( ArgList[0] ) );
} else {
throw Context.reportRuntimeError( "The function call escapeHtml requires 1 argument." );
}
}
代码示例来源:origin: pentaho/pentaho-kettle
break;
case StringOperationsMeta.MASK_ESCAPE_HTML:
rcode = Const.escapeHtml( rcode );
break;
case StringOperationsMeta.MASK_UNESCAPE_HTML:
内容来源于网络,如有侵权,请联系作者删除!