我为清单中的化学品清单创建了一个jtable,可以使用以下代码对每列进行排序(chemicalTable是jTable的名称):
chemicalTable.setAutoCreateRowSorter(true);
TableRowSorter<TableModel> sorter1
= new TableRowSorter<TableModel>(chemicalTable.getModel());
chemicalTable.setRowSorter(sorter1);
然后,我使用jTextfield创建了一个带有keyTyped侦听器的搜索框,以便每当用户键入某个字符时,表便会刷新。它通常有效。
我在搜索框的keyTypedListener中使用了以下代码:
DefaultTableModel dm = (DefaultTableModel) chemicalTable.getModel();
str = searchChemicalText.getText();
try {
String url = "jdbc:mysql://localhost/chemical inventory";
Class.forName("com.mysql.jdbc.Driver").newInstance();
conn = DriverManager.getConnection(url, "root", "");
} catch (Exception e) {
JOptionPane.showMessageDialog(this, "Error Occurred.", "Error", JOptionPane.ERROR_MESSAGE);
}
int ctr = 0;
while (ctr < chemicalTable.getRowCount()) {
chemicalTable.getModel().setValueAt(null, ctr, 0);
chemicalTable.getModel().setValueAt(null, ctr, 1);
chemicalTable.getModel().setValueAt(null, ctr, 2);
ctr++;
}
int count = 0;
try {
Statement stmt = conn.createStatement();
String query = "Select * FROM chemicallist where name_of_reagent like '%" + str + "%'";
ResultSet rs = stmt.executeQuery(query);
if (rs.next()) {
rs = stmt.executeQuery(query);
while (rs.next()) {
String qty = null, qtyunit = null, chemstate = null, reagentName = null;
reagentName = rs.getString("name_of_reagent");
qty = rs.getString("quantity");
qtyunit = rs.getString("quantity_unit");
chemstate = rs.getString("state");
chemicalTable.getModel().setValueAt(reagentName, count, 0);
chemicalTable.getModel().setValueAt(qty + " " + qtyunit, count, 1);
chemicalTable.getModel().setValueAt(chemstate, count, 2);
if (count + 1 > chemicalTable.getRowCount() - 1) {
dm.setRowCount(chemicalTable.getRowCount() + 1);
dm.fireTableRowsInserted(0, 5);
}
count++;
}
}
} catch (Exception e) {
JOptionPane.showMessageDialog(this, "Error Occurred.", "Error", JOptionPane.ERROR_MESSAGE);
}
我的问题是:每当我首先对任何列(col1,col2或col3)排序并在搜索框中插入一个字符时,都会收到以下错误消息:
“事件调度期间发生了异常:
Java.lang.NullPointerException”
最佳答案
尽管不可能调试代码片段,但有几点值得注意:
在同一部分中,将TableModel
引用为dm
和chemicalTable.getModel()
;使用单个引用或验证它们引用的是同一实例。
代替干预setRowCount()
,请使用addRow()
方法之一。
更改模型的DefaultTableModel
方法将为您触发正确的事件,并且表将相应地自动更新;您不必自己做。