是否可以在JTable渲染器中进行查询?

时间:2014-10-17 14:18:40

标签: java mysql netbeans jtable

我正在尝试做一个表格,每个单元格可以是不同的颜色,这取决于我从mysql带来的日期,问题是,当我试图从新渲染器中的查询中带来日期时程序运行所以慢慢崩溃,netbenas向我展示了很多messenges“连接成功”,然后“连接关闭”,这就是因为它将大量时间用于mysql。

我需要帮助,这是我的渲染器代码

public class MiRender extends DefaultTableCellRenderer {

    @Override
    public Component getTableCellRendererComponent(JTable table,
            Object value,
            boolean isSelected,
            boolean hasFocus,
            int row,
            int column) {





        cell = (JLabel) super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);

        if (!mes.getSelectedItem().toString().equals("All")) {
            tabla.setAutoResizeMode(JTable.AUTO_RESIZE_NEXT_COLUMN);

        } else {
            tabla.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
        }

        tabla.setRowHeight(26);



        if (column == 0) {
            tabla.setCellSelectionEnabled(false);
            tabla.setEnabled(false);

        } else {
            tabla.setCellSelectionEnabled(true);
            tabla.setEnabled(true);
        }
        tabla.getColumnModel().getColumn(0).setCellRenderer(tabla.getTableHeader().getDefaultRenderer());

        DataBase db = new DataBase();
    ResultSet /*Dudas de variable ResultSet se encuentran en línea 207 de EVR_Main*/ rs;
    rs = db.getRecords( /*Ver funciones de método getRecords en línea 192 de EVR_Main*/
            "SELECT Start_Date, End_Date, idmae, State FROM Capacity ");


    try {
        rs.beforeFirst();
        while (rs.next()) {



        if (isSelected) {
            tabla.setRowSelectionInterval(tabla.getSelectedRow(), tabla.getSelectedRow());

            cell.setBackground(new Color(colo));
            cell.setForeground(Color.black);
            cell.setOpaque(true);
            cell.setBorder(BorderFactory.createLineBorder(Color.blue));

        } else if (rs.getDate(1)== lastdate) {

            cell.setBackground(Color.yellow);
            cell.setForeground(Color.blue);
            cell.setOpaque(true);
            cell.setBorder(BorderFactory.createLineBorder(Color.blue));

        } else {
            // Restaurar los valores por defecto
            cell.setBackground(Color.WHITE);
            cell.setForeground(Color.BLACK);
            cell.setOpaque(true);
            cell.setBorder(BorderFactory.createLineBorder(Color.gray));

        }
        }
    } catch (SQLException ex) {
        Logger.getLogger(Capacity.class.getName()).log(Level.SEVERE, null, ex);
    }
    db.closeConnection();

        return this;
    }

}

1 个答案:

答案 0 :(得分:2)

您正在表格单元格渲染器中执行SQL查询。这是完全错误的。考虑到渲染器一次只能处理一个单元格,这意味着将对每个渲染的单元格执行查询,这可能会非常频繁地发生。因此渲染将过慢。由于它发生在AWT事件线程中,这将导致整个UI看起来有效冻结。

您需要重新设计代码,以便在渲染器外部执行查询,并且频率更低,并将查询结果的字段存储在单独的数据结构中,例如列表或值对象数组,每个VO表示查询中的表格行。

然后,您需要能够将这些对象中的每一个与JTable中的位置(行和/或列坐标)相关联,或者至少将value参数作为输入发送到单元格渲染器。这通常通过使用适当的表模型来完成。

所有这些概念都在Swing教程的How to Use Tables部分中进行了说明,我邀请您仔细研究它。