The problem I am having is when I am trying to find data from the table by making a method and calling that method. It seems that the table doesn't exist, as I am getting an ArrayIndexOutOfBoundsException.
Below is the code, model is the tableModel.
// @Override
public void actionPerformed(ActionEvent arg0) {
String s = dropDown.getSelectedItem().toString();
if(s.equals("9 out of 11")) {
System.out.println(model.getValueAt(1, 1));
} else {
checkScores();
}
}
});
return panel;
}
public static void checkScores(){
Object o = model.getValueAt(1, 1);
int i = ((Integer) o).intValue();
System.out.println(i);
}
NullPointerExceptionas opposed to AIOOBE. It has been said before, but a little louder this time. For better help sooner, post an SSCCE. – Andrew Thompson Feb 18 at 18:06