"classiccars", "classiccars");
// 3. 获取表达式,插入注册信息
stmt = conn.createStatement();
stmt.executeUpdate("insert into Tuser(name, password, age, sex) values('"+ jTextField1.getText()+ "','"+ jTextField2.getText()+ "',"+ Integer.parseInt(jTextField4.getText())+ ",'" + jTextField5.getText() + "')"); // 4. 执行 SQL
rs = stmt.executeQuery("select * from TUser");
} catch (SQLException e) {
e.printStackTrace();
} finally {
// 5. 释放资源,建议放在finally语句中确保都被关闭掉了
try {
rs.close();
} catch (SQLException e) { }
try {
stmt.close();
} catch (SQLException e) { }
try {
conn.close();
} catch (SQLException e) {
}
}
this.dispose();
new STyping().setVisible(true);
}
}
}
3.4 用户登陆界面的设计
用户登陆界面如图3.5所示。
图3.5 用户登陆界面示意图
Form名称为LType,包含三个jLabel、两个jButton、两个jTextField。jLabel用于显示文字,没有特殊功能,jButton含有相关Event代码, jTextField用于填写相关信息,本身不含事件但其内容会被调用。
功能解析:在文本框中输入对应信息,单击“确认登陆”按钮可以进入用户主界面,单击“返回初始界面”按钮可以返回初始界面。
3.5 用户主界面的设计
用户主界面如图3.6所示。
图3.6 用户主界面示意图
Form名称为PTyping,包含一个jLabel、优尔个jButton。jLabel用于显示文字,没有特殊功能,jButton含有相关Event代码。
功能解析:单击按钮后可以进入相应的界面,相关界面在之后会做出详细说明。 智能交互式指法练习系统的设计和开发(6):http://www.youerw.com/jisuanji/lunwen_7815.html