关于java.lang.NullExceptionPoint的错误

时间:2017-04-27 05:47:57

标签: java netbeans nullpointerexception

我正在开发Netbeans的项目,名为Car reservation system。我在登录表单代码时遇到错误。一旦我点击登录按钮,就会出现java.lang.NullExceptionPoint错误。 对我的代码有什么建议吗?感谢

这是我的代码:

private void cmdloginMouseClicked(java.awt.event.MouseEvent evt) {                                      
        // TODO add your handling code here:
        String sql = txtusername.getText() + "'select * from tblelogin where username='" + "' and userpass='" + txtuserpass.getText() + "'";
        try {
            pst = conn.prepareStatement(sql);
            rs = pst.executeQuery();
            if (rs.next()) {
                JOptionPane.showMessageDialog(null, "Correct");

            } else {
                JOptionPane.showMessageDialog(null, "Invalid username or password");
            }

        } catch (Exception e) {
            JOptionPane.showMessageDialog(null, e);
        }
    }        

1 个答案:

答案 0 :(得分:0)

我认为你给了按钮错误的id。一旦检查身份证。当我们没有初始化项目或给出错误的id时,将出现空指针异常。