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);
}
link|improve this question
3  
Maybe you don't have any data. JTable indexes are zero-based. If you need more help then post your SSCCE that demonstrates the problem. – camickr Feb 18 at 17:12
The JTable has data, and can be manipulated as long as you are not trying to manipulate it from another method – jonathan innes Feb 18 at 17:42
2  
"seems that the table doesn't exist as I am getting an ArrayIndexOutOfBoundsException" That would more likely cause a NullPointerException as 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
feedback

1 Answer

There is not enough information to be certain, but it appears that the ActionListener is being called before the TableModel is fully constructed. Also, verify that all Swing components are being constructed and manipulated only on the event dispatch thread.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.