您的位置:首页 > 其它

将ResultSet转为List

2015-11-13 00:05 295 查看
/article/6080079.html

public static List resultSetToList(ResultSet rs) throws java.sql.SQLException {

if (rs == null)

return Collections.EMPTY_LIST;

ResultSetMetaData md = rs.getMetaData(); //得到结果集(rs)的结构信息,比如字段数、字段名等

int columnCount = md.getColumnCount(); //返回此 ResultSet 对象中的列数

List list = new ArrayList();

Map rowData = new HashMap();

while (rs.next()) {

rowData = new HashMap(columnCount);

for (int i = 1; i <= columnCount; i++) {

rowData.put(md.getColumnName(i), rs.getObject(i));

}

list.add(rowData);

System.out.println("list:" + list.toString());

}

return list;

}

接着在其他方法里处理返回的List

List ls = resultSetToList(rs);

Iterator it = ls.iterator();

while(it.hasNext()) {

Map hm = (Map)it.next();

System.out.println(hm.get("字段名大写"));

}

分类: Java

好文要顶 关注我 收藏该文







seaven

关注 - 0

粉丝 - 10

+加关注

1

0

(请您对文章做出评价)

« 上一篇:Java
Timer

» 下一篇:Java调用C#的web
Service
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: