I’ve been looking at this http://blog.javia.org/assembly-java/ and in particular this bit #6: Don’t use String. Use char array instead.
Does anyone have an example of storing and retrieving data in this way?
For example I have arrays like this
int[] myInts = new int[256];
int[] myotherInts = new int[256];
byte[] mybytes = new byte[someLength];
Essentially:
So all of your strings are stored in a single array, and then extracted separately using
getChars().