About 3 Dim arrays

How does one go about creating a 3 -diminesion String array...?

Im currently using an ArrayList, but I need to store 3 related values at one index and can't find a way to do this with an ArrayList. I have thought about a Vector of Vectors, but isnt a 3 dim array more efficient ?

Any help is great

Cheers

Reave

[342 byte] By [patriveta] at [2007-9-30 2:25:13]
# 1
If you need to store three related values, then create a class that expresses that relation, and store just a single instance of the class at the desired location. This class will hold the three related values.
paulcwa at 2007-7-16 13:35:00 > top of Java-index,Archived Forums,New To Java Technology Archive...