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);
}
看完两件小事
如果你觉得这篇文章对你挺有启发,我想请你帮我两个小忙:
- 把这篇文章分享给你的朋友 / 交流群,让更多的人看到,一起进步,一起成长!
- 关注公众号 「方志朋」,公众号后台回复「资源」 免费领取我精心整理的前端进阶资源教程