你好我需要在选择特定选项时分离表单的一部分,(我不能使用隐藏/显示选择器,因为我必须跳过一些必需的字段)下面的代码是分离段但不通过选择将其带回其他选择
private void connect() {
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();
con = DriverManager.getConnection(URL,user,pass);
stmt = con.createStatement();
} catch (Exception e) {
error = true;
e.printStackTrace();
}
}