我正在尝试将地图值添加到我的方案的列表中,如下所示。
我有select语句,该语句返回n-no的列和行,我将它们存储到String类型的Hash Map列表中,并将其传递给其他方法以从结果中生成EXCEL文件。
我看不到列表中的任何数据
请告诉我我要去哪里错了。
while (result.next()) {
resultValues.put("PARTC_ID",result.getString("PARTC_ID"));
resultValues.put("FILE_NME",result.getString("FILE_NME"));
resultValues.put("LOC_ID",result.getString("LOC_ID"));
resultValues.put("CRTE_DTE",result.getString("CRTE_DTE"));
resultValues.put("CRTE_BY",result.getString("CRTE_BY"));
value.add(resultValues); resultValues.clear(); System.out.println(value);
}
最佳答案
将地图添加到列表后,您正在清除地图。因此,地图引用都是相同的(并且为空)...我想您想进行此更改-
// resultValues.clear(); // No, if you need another Map... do this
resultValues = new HashMap<String, String>();
然后迭代您的值List尝试
for (HashMap<String, String> map : value) {
for (String key : map.keySet()) {
System.out.printf("key[%s] = %s\n", key, map.get(key));
}
}