我有一个名为tutorial的mysql数据库,其中包含一个表“devices”,我有一个swing程序,它通过文本框向表中插入一行。它适用于插入行,但是当我将文本框留空并单击“确定”按钮时,会在row.how中添加一个空列以避免添加空行。并且即使单个文本框为空也避免添加行。我已经在mysql.plz帮助中定义了非空约束。
这是我的代码:
jb.addActionListener(new ActionListener(){
public void actionPerformed( ActionEvent e ) {
try {
Class.forName("com.mysql.jdbc.Driver");
System.out.println("Driver loading success!");
String url = "jdbc:mysql://localhost:3306/tutorial";
String name = "root";
String password = "ranjini123";
try {
java.sql.Connection con = DriverManager.getConnection(url, name, password);
System.out.println("Connected.");
String text1=jt1.getText();
String text2=jt2.getText();
String text3=jt3.getText();
String text4=jt4.getText();
String text5=jt5.getText();
ps = con.prepareStatement (
"INSERT INTO devices (asset_id,name,project,emp_id,emp_name) VALUES(?,?,?,?,?)");
try{
ps.setString (1, text1);
ps.setString (2, text2);
ps.setString (3, text3);
ps.setString (4, text4);
ps.setString(5,text5);
ps.executeUpdate();
JOptionPane.showMessageDialog(null,"new device added");
}
catch(NullPointerException n)
{
n.printStackTrace();
}
}
catch (SQLException n)
{
n.printStackTrace();
}
}
catch(Exception n)
{
n.printStackTrace();
}
}
});
答案 0 :(得分:2)
基本上,您需要查看任何文本字段的长度是null
还是0
。您需要检查它们是否null
,因为它可能会抛出NullPointerException
...
String text1=jt1.getText();
String text2=jt2.getText();
String text3=jt3.getText();
String text4=jt4.getText();
String text5=jt5.getText();
if (text1 != null && !text1.trim().isEmpty() &&
text2 != null && !text2.trim().isEmpty() &&
text3 != null && !text3.trim().isEmpty() &&
text4 != null && !text4.trim().isEmpty() &&
text5 != null && !text5.trim().isEmpty()) {
//... Do insert
} else {
// Deal with the fact that one or more of the values are invalid
}