表达式解析库:Java’s ScriptEngine 或者 Apache Commons JEXL
使用 Java’s ScriptEngine
Java 提供了内置的 ScriptEngine,可以用于评估简单的逻辑表达式。
1.导入所需的类:
import javax.script.ScriptEngine;
import javax.script.ScriptEngineManager;
import javax.script.ScriptException;
2.使用 ScriptEngine 解析和评估逻辑表达式:
public class LogicEvaluator {
public static void main(String[] args) {
String evalStr = "10 > 5 && (6< 8 || 7 > 9)";
ScriptEngineManager manager = new ScriptEngineManager();
ScriptEngine engine = manager.getEngineByName("js");
try {
Boolean result = (Boolean) engine.eval(evalStr);
System.out.println("The result of the evalStr is: " + result);
} catch (ScriptException e) {
e.printStackTrace();
}
}
}
使用 Apache Commons JEXL
JEXL(Java Expression Language)是 Apache Commons 的一个库,允许更复杂的表达式解析。
1.添加 Maven 依赖:
在你的 pom.xml 文件中添加以下依赖项:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-jexl3</artifactId>
<version>3.2.1</version>
</dependency>
2.使用 JEXL 解析和评估逻辑表达式:
import org.apache.commons.jexl3.JexlBuilder;
import org.apache.commons.jexl3.JexlEngine;
import org.apache.commons.jexl3.JexlExpression;
import org.apache.commons.jexl3.JexlContext;
import org.apache.commons.jexl3.MapContext;
public class LogicEvaluator {
public static void main(String[] args) {
String evalStr = "10 > 5 && (6< 8 || 7 > 9)";
JexlEngine jexl = new JexlBuilder().create();
JexlExpression e = jexl.createExpression(evalStr);
JexlContext context = new MapContext();
Boolean result = (Boolean) e.evaluate(context);
System.out.println("The result of the evalStr is: " + result);
}
}