我有一个ResultSet
对象
ResultSet theInfo = stmt.executeQuery(sqlQuery);
但我希望有一个可以从另一个java类调用的函数
public Vector loadStuff(){
try {
while (theInfo.next()){
aVector.addElement(new String(theInfo.getString("aColumn"))); // puts results into vectors
}
} catch (SQLException e) {
e.printStackTrace();
}
return aVector;
}
我不完全确定如何解决这个问题。我想要一些如何调用返回填充向量的void方法。这有可能吗?
答案 0 :(得分:1)
假设您有一个类Demo,并且方法getVector遵循给定的方法。
class Demo {
public Vector getVector(ResultSet theInfo) {
if(theInfo==null){
throw new IllegalArgumentException("ResultSet is null");
}
Vector aVector = new Vector();
try {
while (theInfo.next()) {
aVector.addElement(new String(theInfo.getString("aColumn")));
}
} catch (SQLException e) {
e.printStackTrace();
}
return aVector;
}
}
现在在获取ResultSet后调用getVector。
ResultSet theInfo = stmt.executeQuery(sqlQuery);
Demo demo =new Demo();
Vector vector=demo.getVetor(theInfo );