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