我正在研究java(swing组件)中的项目。我创建了一个由按钮和文本框组成的表单。在文本框中输入值并单击提交按钮后,我希望值为输入数据库。
答案 0 :(得分:3)
答案 1 :(得分:1)
把它放在你的提交按钮Action Listener ....
上try{
Connection con = null;
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection("jdbc:mysql://localhost:3306/test";, "root", "root");
Statement st = con.createStatement();
int i= st.executeUpdate("Insert into employee(empName,empAddress) values('"+value1+"','"+value2+"')");
JOptionPane.showMessageDialog(null,"Data is successfully inserted into the database." );
st.close();
con.close();
}
catch(Exception e){
System.out.println(e);
}