发布网友 发布时间:2022-04-24 02:15
共1个回答
热心网友 时间:2023-10-21 10:17
private static int h = 20; public static Object[][] GetObject(ResultSet rs){ Object[][] ob = new Object[h][2]; int index = 0; try { while(rs.next()){ if(index>h) break; ob[index][0] = rs.getString(1); ob[index][1] = rs.getString(2); index++; } } catch (SQLException e) { e.printStackTrace(); } return ob; }上面就是模拟的数组就是无法确定长度 所以你要设定这个值自己根绝代码去琢磨建议你使用list 或者Vector 之类的集合替代数组