Is there a good way (or module) to modify or append data into xml file in Android? -
the situation this, had create xml file in xmlpullparser way:
<?xml version='1.0' encoding='utf-8' standalone='yes'?> <users> <user id="1"> <name>abc</name> <password>abc</password> </user> <user id="2"> <name>def</name> <password>def</password> </user> </users>
and now, want modify or append data xml file, except create new xml file (or clean original data , import new data), there way based on original file?
Comments
Post a Comment