Best way to save data for later use?

llama1234560

New Member
What is the best way to save multiple (about 80) fields as a single entity? My app creates a "program" object which itself contains about 75 Strings in an array, about 4 other random Strings, and a single int field. I want to be able to save these so that the user will be able to view basic information about each program in a ListView, and then click one of them to view the rest of the data. What is the best way to save these? I've been thinking about saving them each as their own separate XML file, but I've also heard about databases (though though seem a little much for what I'm trying to do). Or should I just save them as regular .txt files and parse them later? Or maybe even just save every single program in to a single txt/xml file, and parse them all together? Or is there something even more efficient that I'm missing?
 
Back
Top