sonesay 7 Report post Posted May 27, 2008 (edited) I'm having some issues with working with objects [][]. I get an index out of bounds ex.Exception in thread "AWT-EventQueue-0" java.lang.ArrayIndexOutOfBoundsException: 0heres how I'm using it----------------------------Object[][] contestants = new Object[][] {};contestants[0][0] = "test";any ideas appreciated. Do I need to specify the initial size on creation or something?It seems I answered my own question I gave it an inital size then I was able to add things. But is there a way I can add to it on the fly without knowing its require maximum size? Edited May 27, 2008 by sonesay (see edit history) Share this post Link to post Share on other sites
EpicRevolution 0 Report post Posted July 8, 2008 I think what your trying to do is to big to handle or somewhere in your coding process you must of forgot something and it compiled Share this post Link to post Share on other sites
sonesay 7 Report post Posted July 8, 2008 I found the error a little after I made the initial post. It was because I did not give the array an initial max size so it wouldn't let me use it. Thanks for your input none the less. Share this post Link to post Share on other sites