我正在使用JDBC开展项目。我想从包含用户名和密码的数据库(称为profil)中选择用户名。我想在Kontakte2数组中逐个保存用户名。 有人可以帮助我吗?
try {
stmt = con.createStatement();
String q = "select username from profil";
ResultSet username = stmt.executeQuery(q);
String[] Kontakte2 = new String[100];
int i = 0;
while(username.next()){
Kontakte2[i] = username.getString(1);
i++;
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}