I am getting this error every time I try to update the data in my JTable:

Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 2
at javax.swing.DefaultRowSorter.convertRowIndexToModel(DefaultRowSorter.java:501)
at javax.swing.JTable.convertRowIndexToModel(JTable.java:2620)
at javax.swing.JTable.getValueAt(JTable.java:2695)
at javax.swing.JTable.prepareRenderer(JTable.java:5712)
at javax.swing.plaf.basic.BasicTableUI.paintCell(BasicTableUI.java:2069)
at javax.swing.plaf.basic.BasicTableUI.paintCells(BasicTableUI.java:1971)
at javax.swing.plaf.basic.BasicTableUI.paint(BasicTableUI.java:1767)
at javax.swing.plaf.ComponentUI.update(ComponentUI.java:143)
at javax.swing.JComponent.paintComponent(JComponent.java:751)
at javax.swing.JComponent.paint(JComponent.java:1017)
at javax.swing.JComponent.paintChildren(JComponent.java:852)
at javax.swing.JComponent.paint(JComponent.java:1026)
at javax.swing.JViewport.paint(JViewport.java:747)
at javax.swing.JComponent.paintChildren(JComponent.java:852)
at javax.swing.JComponent.paint(JComponent.java:1026)
at javax.swing.JComponent.paintChildren(JComponent.java:852)
at javax.swing.JComponent.paint(JComponent.java:1026)
at javax.swing.JComponent.paintChildren(JComponent.java:852)
at javax.swing.JComponent.paint(JComponent.java:1026)
at javax.swing.JComponent.paintChildren(JComponent.java:852)
at javax.swing.JComponent.paint(JComponent.java:1026)
at javax.swing.JComponent.paintToOffscreen(JComponent.java:5112)
at javax.swing.BufferStrategyPaintManager.paint(BufferStrategyPaintManager.java:278)
at javax.swing.RepaintManager.paint(RepaintManager.java:1220)
at javax.swing.JComponent._paintImmediately(JComponent.java:5060)
at javax.swing.JComponent.paintImmediately(JComponent.java:4870)
at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:803)
at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:714)
at javax.swing.RepaintManager.seqPaintDirtyRegions(RepaintManager.java:694)
at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueueUtilities.java:125)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)

The data seems to be updating fine, but something is going wrong and it's bothering me that it doesn't even refer to any of my code. After a while of debugging, I determined that the following lines of code were causing the problem:

public class LoadingLogListThread extends Thread{

...

public void run() {

...
int colNo = rsmd.getColumnCount();

while(rs.next() ){
    Object[] objects = new Object[colNo];
    for(int i=0;i<colNo;i++){
        objects[i]=rs.getObject(i+1);
    }
    if( objects != null )
        aModel.addRow(objects);
    count++;
}

mainView.logEntryTable.setModel(aModel);
...

}

The thread is created and started when I click on a button to filter the list, which then goes back out to the database to get more data that may be beyond what was already fetched. I plan on later determining if a new fetch is needed and only do the above in that case and otherwise just filter the results already fetched.

link|improve this question

how do you update the data in your table? – akf Feb 11 at 3:24
See the last line of the updated code above for how I update the data in the table. Basically I just set the model of the table to the new model. – Brian T Hannan Feb 11 at 3:36
1. That's a poor way of updating the table. Fire the appropriate events. 2. If you're setting the model on the table in the non-event dispatch thread and the event dispatch thread is painting, the underlying model may change which can cause the problem. – LazyCubicleMonkey Feb 11 at 3:50
Ok, how do I set the model in the "non-event dispatch thread" ... where is that? How can I tell if the event dispatch thread is painting? – Brian T Hannan Feb 11 at 3:56
1  
You WANT to set the model in the Event Dispatch Thread. Read up on Concurrency for an explanation and a solution using a Swing Worker. – camickr Feb 11 at 4:06
show 7 more comments
feedback

1 Answer

You need to be updating the model on the Event Dispatch Thread. You're correct to spawn a new thread to perform some of the work, especially since data is being fetched from a database. Try this:

public class LoadingLogListThread extends Thread{

...

public void run() {

...
int colNo = rsmd.getColumnCount();

while(rs.next() ){
    Object[] objects = new Object[colNo];
    for(int i=0;i<colNo;i++){
        objects[i]=rs.getObject(i+1);
    }
    if( objects != null )
        aModel.addRow(objects);
    count++;
}

SwingUtilities.invokeLater(new Runnable() {

    @Override
    public void run() {
        mainView.logEntryTable.setModel(aModel);
    }

});

...

}
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.