Hi.
I want to store some data from structures like this:
class Project {
ChildA a;
ChildB b;
}
class ChildA {
ChildC c;
...
}
...
I have created data like:
Projet x = new Project();
x.a = new ChildA();
x.a.c = new ChildC();
... and I want to save it to an external file on the sdcard of my device so that other apps can read it (and users can open/copy it).
I thought I should use a DOM parser because my data structures are not very big, but I find no tutorials or anything like that. Is there a better way to store this information?
If not, are there any instructions how to use the parsers in android?