Script工具-ScriptUtil
# Script工具-ScriptUtil
# 介绍
针对Script执行的工具化封装
# 使用
ScriptUtil.eval
执行Javascript脚本,参数为脚本字符串。
栗子:
ScriptUtil.eval("print('Script test!');");
ScriptUtil.compile
编译脚本,返回一个CompiledScript
对象
栗子:
CompiledScript script = ScriptUtil.compile("print('Script test!');");
try {
script.eval();
} catch (ScriptException e) {
throw new ScriptRuntimeException(e);
}
上次更新: 2023/10/26, 14:10:35