Hi,
I have to manage XML documents and Strings in my app.
In terms of efficiency and memory usage, will a collection like ArrayList
be much more expensive than String[]
? Also, I could store the content as a regular String or XML. Is working with XML also more expensive? (When I say expensive, I am referring to the use of system resources.)
Those Strings will include xml's.. all i gonna do is pass them to another appz and those appz will deal with them.. nothing more..the ArrayList will hold dynamiclly around 20 Strings each.. and ill will need to 'for each' it, get the content of the string and send it to another app.
If there are differences, are they significant?
Thanks, Ray.