可能重复:
如何遍历地图中的每个条目?
我遵循此解决方案无效:https ://stackoverflow.com/a/1835742/666468
我正在尝试输出此地图:
//protected Map<String,String> getImageTagAttributes()
Image image = new Image(resource);
for (Map<String, String> foo : image.getImageTagAttributes()) {
String key = foo.getKey();
String value = foo.getValue();
//output here
}
但是我收到了这个错误:Can only iterate over an array or an instance of java.lang.Iterable
我也导入了java.util.Iterator,但没有运气。
ps 我希望我可以安装和使用 JSTL,但这不是我的决定。