I'm trying to write a list of contacts to an XML file using Simple XML framework ,according to the Loose object mapping tutorial. And I want something like this
<ContactsList>
<Contact id="1">
<name>John Doe</name>
<address>Somewhere</address>
</Contact>
<Contact id="2">
<name>Homer Simpson</name>
<address>Somewhere</address>
</Contact>
<Contact id="3">
<name>Flash McQueen</name>
<address>Somewhere</address>
</Contact>
</ContactsList>
This is my Contact.java
public class Contact {
@Attribute(name = "id")
public int id;
@Element(name="Nom")
String name;
public void setName(String name) {
this.name = name;
}
public void setId(int id){
this.id = id;
}
}
And this is how I make the call for all contacts
Serializer serializer = new Persister();
ContentResolver cr = c.getContentResolver();
Cursor cu = cr.query(URI, null, null, null, null);
taille = cu.getCount();
if (taille > 0) {
// Loop over all contacts
Contact [] contact = new Contact[taille];
int k = 0;
while (cu.moveToNext()) {
name = cu.getString(cu.getColumnIndex(DNAME));
id = cu.getString(cu.getColumnIndex(ID));
contact[k] = new Contact();
contact[k].setName(name);
contact[k].setId(id);
serializer.write(contact[k], xmlFile);
k++;
}
}
The problem is, I only get the last contact stored, seems like file is being crushed over while looping. I'm now looking for a way to write in xmlFile in append mode. I can't find a way to write in append mode with serializer.write method. Or there is better way to do what I want?
Serializer serializer = new Persister();is just before thecontentResolvercall. I've edited the first post. – San Francesco Sep 8 '11 at 16:59