所以我一直试图创建一个String[][]
,使用JDBC
从数据库中提取其项,但无法将结果输入String[][]
。我做错了什么?我得到了这个错误:
java.lang.ArrayIndexOutOfBoundsException: 4
at modelo.ConectorBaseDatos.getRows_From_DB(ConectorBaseDatos.java:194)
at modelo.ConectorBaseDatos.main(ConectorBaseDatos.java:237)
194行是:
rows_list[rows][cols] = result.getString(2);
这是代码:
public String[][] getRows_From_DB(String tableName, String db, String querY){
try{
int columnCount = this.getTableInfo(tableName, db, true, false) - 1;
int rowCount = this.getTableInfo(tableName, db, false, true) - 1;
rows_list = new String[rowCount][columnCount];
Connection con = getConnect_to_DB("fifa");
PreparedStatement statement = con.prepareStatement(querY);
ResultSet result = statement.executeQuery();
while(result.next()){
for(int rows = 1; rows <= rowCount; rows++){
for(int cols = 1; cols <= columnCount; cols ++){
rows_list[rows][cols] = result.getString(2);
rows_list[rows][cols] = result.getString(3);
rows_list[rows][cols] = result.getString(4);
rows_list[rows][cols] = result.getString(5);
}
}
}
}catch(Exception e){
e.printStackTrace();
JOptionPane.showMessageDialog(null, "Error en getRows_From_DB()" + e, "ERROR!", JOptionPane.ERROR_MESSAGE, null);
}
return rows_list;
}
几个问题,这里:
- 您用1而不是0开始索引(正如Kon所提到的)
- 您设置给定rows_list[rows][cols]4次(其中3次将替换实例)
- 您对行进行两次迭代(一次在结果集中返回,第二次使用行计数
有关解决这些问题的解决方案,请参阅以下内容:
...
ResultSet result = statement.executeQuery();
int rowNumber = 0
while(result.next()){
//Alternatively iterate here in another loop through all columns.
rows_list[rowNumber][0] = result.getString(2);
rows_list[rowNumber][1] = result.getString(3);
rows_list[rowNumber][2] = result.getString(4);
rows_list[rowNumber][3] = result.getString(5);
}
}catch(Exception e){
...