我在 JESS 中编写了一个代码。我现在正在从 Java 运行代码。我遇到了这个问题,我想在 for 循环中使用 engine.execute("") 命令。我的示例代码是:
for (int i = 0; i < 10; i++){
for (int j = 0; j < 10; j++){
r.executeCommand("(answer(ident headers.get(i)(text patientData.get(j).get(i))");
}
}
其中 answer 是 JESS 中带有两个插槽的 deftemplate。我正在阅读 Java 中的文本文件并将值插入到 deftemplate 的插槽中。
谢谢,阿里