java.lang.NoClassDefFoundError: Could not initialize class 15
用java读取数据库的信息在关闭数据库的代码处报错curd工具.closeAll(rs,stmt,conn);下面是方法的代码publicstaticvoidcloseA...
用java读取数据库的信息 在关闭数据库的代码处报错
curd工具.closeAll(rs, stmt, conn);
下面是方法的代码
public static void closeAll(ResultSet rs,Statement stmt,Connection conn){
if(rs!=null){
try {
rs.close();
} catch (Exception e) {
e.printStackTrace();
}
rs=null;
}
if(stmt!=null){
try {
stmt.close();
} catch (Exception e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
stmt=null;
}
if(conn!=null){
try {
conn.close();
} catch (Exception e) {
e.printStackTrace();
}
conn=null;
}
} 展开
curd工具.closeAll(rs, stmt, conn);
下面是方法的代码
public static void closeAll(ResultSet rs,Statement stmt,Connection conn){
if(rs!=null){
try {
rs.close();
} catch (Exception e) {
e.printStackTrace();
}
rs=null;
}
if(stmt!=null){
try {
stmt.close();
} catch (Exception e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
stmt=null;
}
if(conn!=null){
try {
conn.close();
} catch (Exception e) {
e.printStackTrace();
}
conn=null;
}
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询