我JTable
在我的 GUI 应用程序中创建了一个,我想使用我已经创建的添加和删除按钮添加行和删除行,问题是删除行时我想获取选定的行索引,但我得到了一个NullPointerException
正当的时间调用getSelectedRow()
方法。我试图用谷歌搜索它并没有找到我的问题答案我也试图阅读java文档但我发现这种方法通常不会抛出那个异常。
编码:
// creating the table
JTable table = new JTable(model);
model.addColumn("NO.");
model.addColumn("Name");
model.addColumn("Status");
table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
table.setRowSelectionAllowed(true);
table.setShowGrid(false);
table.getColumnModel().getColumn(0).setPreferredWidth(28);
table.getColumnModel().getColumn(1).setPreferredWidth(222);
table.getColumnModel().getColumn(2).setPreferredWidth(100);
table.setBackground(color);
table.setPreferredScrollableViewportSize(new Dimension(350,250));
table.setFillsViewportHeight(true);
scroll = new JScrollPane(table);
center.add(scroll);
// adding records to it
public class AddEvent implements ActionListener{
public void actionPerformed (ActionEvent event){
String text = write.getText();
if (!text.equals("") && !text.contains(" ")){
String view = "http://www." + text;
write.setText(null);
model.addRow(new Object[]{model.getRowCount()+1, view,"Active"});
}
}
}
// to remove the selected row
public class RemoveEvent implements ActionListener{
public void actionPerformed (ActionEvent event){
int index = table.getSelectedRow(); // it throws the exception here
table.clearSelection();
System.out.println(index);
if(index != -1){
table.remove(index);
}
}
}