我有一些从中获取的参数,我request.getParameterMap()
想遍历 Map 并从 Map 的每一行中获取第 n 个值。下面是数据示例
地图包含:
recordNo:1,2,3,4,5,6
dob:19800101,19800201,'',19930101,19940101,19950302
addressLn1: well street, prince street,lewis street,edward street,mills street, #3 rich street
我所拥有的是一个包含此数据的地图,我想遍历数据并从地图数组中获取第 n 条记录。这就是我要的
第一次迭代打印:1,19800101,well street
第二次迭代打印:2,19800201,太子街
代码:
Map map = request.getParameterMap();
for(int i = 0; i< map.size();i++){
//how can i access the values with the array at the nth position
System.out.println("Value at " +i+ " " +map.get(i).toString());
}