结果集sqlite的Java Null指针异常[重复]

问题描述 投票:0回答:2

这个问题在这里已有答案:

嗨,我得到nullpointerexception但我无法弄清楚为什么

DAO(不使用实用程序连接类)

 package application.model;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import application.util.SqlConnection;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;

public class OperatoreDAO {

    public static ObservableList<Operatore> cercaOperatori() throws SQLException, ClassNotFoundException {
        //Declare a SELECT statement
        String selectStmt = "SELECT * FROM Operatori WHERE DataCessazione=\"\"";

        //Execute SELECT statement
        try {
                Class.forName("org.sqlite.JDBC");
                Connection conn = DriverManager.getConnection("jdbc:sqlite:C:/Users/Utente/Desktop/DB/prova.db");
                PreparedStatement stmt = conn.prepareStatement(selectStmt);
                ResultSet rsOperatori = stmt.executeQuery();

            //Get ResultSet from dbExecuteQuery method
            //ResultSet rsOperatori = SqlConnection.dbExecuteQuery(selectStmt);


            ObservableList<Operatore> operatoriList = getOperatoriList(rsOperatori);


            return operatoriList;
        } catch (SQLException e) {
            System.out.println("SQL select operation has been failed: " + e);
            //Return exception
            throw e;
        }
    }

    private static ObservableList<Operatore> getOperatoriList(ResultSet rs) throws SQLException, ClassNotFoundException {

        ObservableList<Operatore> operatoriList = FXCollections.observableArrayList();

        while (rs.next()) {
            Operatore op = new Operatore();
            op.setId(rs.getInt("idOperatore"));
            op.setCognome(rs.getString("Cognome"));
            op.setNome(rs.getString("Nome"));
            op.setSesso(rs.getString("Sesso"));
            op.setEta(rs.getInt("Eta"));
            op.setDomicilio(rs.getString("Domicilio"));

            operatoriList.add(op);

        }

        return operatoriList;
    }


}

模型

package application.model;

import javafx.beans.property.IntegerProperty;
import javafx.beans.property.StringProperty;

public class Operatore {
    private  IntegerProperty id;
    private  StringProperty cognome;
    private  StringProperty nome;
    private  StringProperty sesso;
    private  IntegerProperty eta;
    private  StringProperty domicilio;


    public int getId() {
        return id.get();
    }

    public void setId(int idIn) {
        id.set(idIn);
    }

    public IntegerProperty idProperty() {
        return id;
    }

    public String getNome() {
        return nome.get();
    }

    public void setNome(String nomeIn) {
        nome.set(nomeIn);
    }

    public StringProperty nomeProperty() {
        return nome;
    }

    public String getCognome() {
        return cognome.get();
    }

    public void setCognome(String cognomeIn) {
        cognome.set(cognomeIn);
    }

    public StringProperty cognomeProperty() {
        return cognome;
    }

    public String getSesso() {
        return sesso.get();
    }

    public void setSesso(String sessoIn) {
        sesso.set(sessoIn);
    }

    public StringProperty sessoProperty() {
        return sesso;
    }

    public int getEta() {
        return eta.get();
    }

    public void setEta(int etaIn) {
        eta.set(etaIn);
    }

    public IntegerProperty etaProperty() {
        return eta;
    }

    public String getDomicilio() {
        return domicilio.get();
    }

    public void setDomicilio(String domicilioIn) {
        domicilio.set(domicilioIn);
    }

    public StringProperty domicilioProperty() {
        return domicilio;
    }


}

我在这里有两个问题,第一个是我从连接实用程序类关闭结果集,因此你可以看到我将连接代码转移到DAO并且我评论了使用实用程序类的行(不是我认为最好的选项但我不喜欢不知道如何管理CachedRowSet

第二个是当我尝试在DAO内部连接时,我尝试在调用getOperatoriList方法之前从结果集中打印一行,然后返回我想要的内容。然后在调用getOperatoriList方法时,它不会将值设置为Operatore对象,而是获得NullPointerException。有人可以弄清楚问题是什么?

java sqlite javafx jdbc resultset
2个回答
1
投票

Slaw已在评论回复中发布此内容,但模型对象中的字段从未初始化。在调用Operatore.setId()时,id字段为null,导致NullPointerException。


-1
投票

可以返回一个空ResultSet而不是一个仅为空的ResultSet。

在将其传递给您的方法之前,请尝试检查rs == null。

© www.soinside.com 2019 - 2024. All rights reserved.