为什么我的 Jtable 中的行没有显示?

Why are my rows in my Jtable not being displayed?

我不明白为什么,当我执行我的请求时,只有我的 jtable 的 headers 是正确的,但没有显示该行。

这是我的代码

private void jButtonRequeteSqlExecuterActionPerformed(java.awt.event.ActionEvent evt) {                                                          
    try {

        //Taking the query from a txt
        String query = jTextPaneRequeteSql.getText();

        // Initialisation request time
        long start = System.currentTimeMillis();

        //Creating a statement
        Connection con = getConnection();
        Statement st = con.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
        ResultSet rs = st.executeQuery(query);            

        //Little manipulation to get the number of row
        rs.last();
        int rowCount = rs.getRow();

        //Calculate the time
        long totalTime = System.currentTimeMillis() - start;

        //Get the model
        jTableRequeteSql.setModel(buildTableModel(rs));

        //display the time
        jLabelRequeteSql.setText("La requête à été exécuter en " + totalTime + " ms et a retourné " + rowCount + " ligne(s)");
        System.out.println("La requête à été exécuter en " + totalTime + " ms et a retourné " + rowCount + " ligne(s)");

        //Refresh the display
        jTableRequeteSql.revalidate();
        jTableRequeteSql.repaint();

                //Closing connection
                rs.close();
                st.close();
                con.close();


          }
          catch (SQLException e) {
              //Dans le cas d'une exception, on affiche une pop-up et on efface le contenu
              JOptionPane.showMessageDialog(null, e.getMessage(), "ERREUR ! ", JOptionPane.ERROR_MESSAGE);
          }

}

为了更好地理解我的代码,您应该知道: getConnection()是returnscon的一个函数(简单的连接数据库的函数)。

buildTableModel(rs) 函数是一个动态 table 具有列数及其名称的函数:

 public static DefaultTableModel buildTableModel(ResultSet rs)
throws SQLException {

ResultSetMetaData metaData = rs.getMetaData();

// names of columns
Vector<String> columnNames = new Vector<String>();
int columnCount = metaData.getColumnCount();
for (int column = 1; column <= columnCount; column++) {
    columnNames.add(metaData.getColumnName(column));
}

// data of the table
Vector<Vector<Object>> data = new Vector<Vector<Object>>();
while (rs.next()) {
    Vector<Object> vector = new Vector<Object>();
    for (int columnIndex = 1; columnIndex <= columnCount; columnIndex++) {
        vector.add(rs.getObject(columnIndex));
    }
    data.add(vector);
}

return new DefaultTableModel(data, columnNames);

}

啊啊啊,我看清楚了...

rs.last();
int rowCount = rs.getRow();

您已将光标移动到 ResultSet 的末尾,但您没有重置它,因此当您调用 ResultSet#next 时,它失败了,因为它已经在末尾了。

您需要使用 ResultSet#beforeFirst 将光标重置到 ResultSet

的开头

而且因为你的代码让我很烦...

//Taking the query from a txt
String query = jTextPaneRequeteSql.getText();

try (Connection con = getConnection();
        Statement st = con.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
        ResultSet rs = st.executeQuery(query)) {

    // Initialisation request time
    long start = System.currentTimeMillis();

    //Little manipulation to get the number of row
    rs.last();
    int rowCount = rs.getRow();

    //Calculate the time
    long totalTime = System.currentTimeMillis() - start;

    rs.beforeFirst();
    //Get the model
    jTableRequeteSql.setModel(buildTableModel(rs));

    //display the time
    jLabelRequeteSql.setText("La requête à été exécuter en " + totalTime + " ms et a retourné " + rowCount + " ligne(s)");
    System.out.println("La requête à été exécuter en " + totalTime + " ms et a retourné " + rowCount + " ligne(s)");

    //Refresh the display
    jTableRequeteSql.revalidate();
    jTableRequeteSql.repaint();

} catch (SQLException e) {
    //Dans le cas d'une exception, on affiche une pop-up et on efface le contenu
    JOptionPane.showMessageDialog(null, e.getMessage(), "ERREUR ! ", JOptionPane.ERROR_MESSAGE);
}

有关详细信息,请参阅 try-with-resources