gpt4 book ai didi

java - 有没有人有任何使用循环的简单 JEXL 示例。我想遍历一个简单的数组来输出各种字符串值?

转载 作者:行者123 更新时间:2023-11-30 06:27:26 24 4
gpt4 key购买 nike

有没有人有任何使用循环的简单 JEXL 示例。我希望遍历一个简单的对象数组列表来输出各种字符串值?

最佳答案

输入 452' 的完整示例如下:

public static void testSimpleList() {

List<String> list = new ArrayList<String>();
list.add("one");
list.add("two");


JexlContext jexlContext = new MapContext();
jexlContext.set("list", list);;

Map<String, Object> functions1 = new HashMap<String, Object>();
functions1.put("system", System.out);


JexlEngine jexl = new JexlEngine();
jexl.setFunctions(functions1);
Expression expression = jexl.createExpression("for(item : list) { system:println(item) }");


expression.evaluate(jexlContext);


}

输出:

one
two

关于java - 有没有人有任何使用循环的简单 JEXL 示例。我想遍历一个简单的数组来输出各种字符串值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13336761/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com