I have some very long short[]
, some multidimensional, which I want to store in some file in my Android App. At first I tried to store these arrays in a Java Class, but it returned a "code too large" error.
Therefore I now have to find a new file format to store these arrays in (pre compile), where the values can be stored as short
s to save space.
Which file format do you recommend, and how would I go about reading from it, from my application?