使用时参考网址:https://gitee.com/cuibo119/QLExpress
ExpressRunner runner = new ExpressRunner();
DefaultContext<String, Object> context = new DefaultContext<String, Object>();
context.put("a", 1);
context.put("b", 2);
context.put("c", 3);
String express = "a + b * c";
Object r = runner.execute(express, context, null, true, false);
System.out.println(r);
1.如果应用有让终端用户输入与执行 QLExpress 的功能,务必关注 多级别安全控制,将 QLExpress 的安全级别配置在 2 或以上。
2.高精度计算在会计财务中非常重要,财务等计算需要开启
/**
* 是否需要高精度计算
*/
private boolean isPrecise = true;