如何将结果集的行存储到HASHMAP中

时间:2012-10-05 12:14:59

标签: java jdbc

有没有办法将ResultSet中包含的表的每一行存储到HashMap中(使每一行成为HashMap的一个条目)。

2 个答案:

答案 0 :(得分:4)

从结果集中获取一列(被视为主键的内容),并将其用于Map的键属性。您可以创建自定义类,将其余列作为其字段(简单POJO),并将其用于value属性。一个例子:

public class MyRow {
    private String col1;
    private int col2;
    ...
    // the constructor
    public MyRow(String s, int i, ...) {
        this.col1 = s;
        this.col2 = i;
        ...
    }
}

假设您将结果集中的int列(如果存在)作为地图的键,您将看到如下内容:

Map<Integer, MyRow> map = new HashMap<Integer, MyRow>(0);
ResultSet rs;
// get your result set from some db query or whatever
while(rs.next()) {
    MyRow mr = new MyRow(rs.getString(yourCol1Index), rs.getInt(yourCol2Index), ...);
    map.put(rs.getInt(yourKeyColumnIndex), mr);
}
// finaly release the resources
rs.close();

答案 1 :(得分:3)

你能做到吗?是。您编写了一个自定义类来表示行的数据内容,然后您读取行,为每个行创建一个实例并使用适当的密钥将其放入HashMap。

有更简单或更好的方法吗?不是我知道的。