I have some very long short[][][]
which I were storing in a class in my android project, before I got a "code too large" error (when compiling my project).
After some research, I realized that I maybe shouldn't store these arrays in a java class, and so, now I wonder how I should go about storing, and reading these arrays.
These arrays are so long that I can't store them as String
s (I hope there is some way to store them where they don't take up more space than short[][][]
). It would also be great if I don't have to write too much code to read the files.
If you need more info, please don't hesitate to ask.