java - 使用 GET 时在 netbeans 中引发异常

标签 java swing exception netbeans

我正在尝试通过 GET 将模型类中的数据检索到文本字段,尽管 nullpointexception 抛出错误

View类中的代码是 =

  public View_EditCustomer(Model_Customer cust) {
        customer = cust;
        txtname.setText(customer.GetFName());
        txtSecondName.setText(customer.GetLName());

        initComponents();
    }

在另一个 View 类中它是 =

private void btnSelectActionPerformed(java.awt.event.ActionEvent evt) {                                          
      ListSelectionModel rowSM = jTable1.getSelectionModel();
            int row = rowSM.getMinSelectionIndex();
            int Appointment_ID = (Integer)resultModel.getValueAt(row, 0);
            Model_Customer cust = null;
            try{
                cust = Controller_ManageCustomer.GetCustomer(Appointment_ID);
                new View_EditCustomer(cust).setVisible(true); 
            }catch(Exception ex){
                JOptionPane.showMessageDialog(this,ex.getMessage(),"Error",JOptionPane.ERROR_MESSAGE);
            }
    }          

Model_Customer 代码部分 =

  public static Model_Customer QueryID(int Appointment_ID) throws Exception
    {
        try{
            Statement stmt = Model_Customer.conn.createStatement();
            ResultSet rs = stmt.executeQuery("SELECT * FROM appointment WHERE appointmentid="+Appointment_ID+" LIMIT 1;");
            if(rs.next())
                return new  Model_Customer(rs.getInt(1),rs.getString(2),rs.getString(3),rs.getString(4),rs.getString(5),rs.getString(6),rs.getString(7),rs.getString(8),rs.getString(9),rs.getString(10),rs.getString(11),rs.getString(12));
        }catch(Exception e){
            throw new Exception(e.getMessage());
        }
        return null;
}


private Model_Customer(int Appointment_ID, String FName, String LName, String Registration, String Make, String Model, String Engine, String Year, String Mileage, String Type, String Date, String Time)
    {
        this._Appointment_ID=Appointment_ID;
        this._Type=Type;
        this._Time=Time;
        this._Date=Date;
        this._FName=FName;
        this._LName=LName;
        this._Make=Make;
        this._Model=Model;
        this._Engine=Engine;
        this._Year=Year;
        this._Mileage=Mileage;
        this._Registration=Registration;
        this._inSync=true;    
    }
    public int GetID()
    {
        return this._Appointment_ID;
    }
    public String GetFName()
    {
        return _FName;
    }
    public String GetLName()
    {
        return _LName;
    }
    public String GetRegistration()
    {
        return _Registration;
    }

    public String GetMake()
    {
        return _Make;

    }
    public String GetModel()
    {
        return _Model;
    }


    public String GetEngine()
    {
        return _Engine;
    }
    public String GetYear()
    {
        return _Year;
    }
    public String GetMileage()
    {
        return _Mileage;
    }
    public String GetType()
    {
        return _Type;
    }
    public String GetDate()
    {
        return _Date;
    }
    public String GetTime()
    {
        return _Time;
    }

在调试中,Model_Customer cust 实际上是由数据填充的,并且它实际上到达了 txtname.setText(customer.GetFName()); 的末尾;转到 Model_Customer GetFName 并应检索名称,但会引发异常 (int)0。非常感谢您的帮助!

最佳答案

不应该 initComponents();在使用 TextViews 之前调用?

public View_EditCustomer(Model_Customer cust) {

        initComponents();
        customer = cust;
        txtname.setText(customer.GetFName());
        txtSecondName.setText(customer.GetLName());


    }

关于java - 使用 GET 时在 netbeans 中引发异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21978404/

相关文章:

java - Maven编译器,只编译带注释的类

JavaFX 将 SimpleBooleanProperty 绑定(bind)到多个属性

java - 单击按钮时修改变量/其他 Swing 对象

php - 在每个 Controller 中处理相同的 try catch 结构

python - Selenium Webdriver 异常 : u'f. QueryInterface 不是函数

java - Groovy 变量的作用域、赋值和引用

java - Android 上不一致的 SSLv3 握手失败

java - 从可运行线程追加时 JTextArea 为空

Java - 密码字段字符计数器

c++ - std::exception_ptr 线程安全吗?