I want to be able to store multiple List<NameValuePairs> for when multiple users enter information into my Android application using the same device. Later on, the user should then be able to send their data to the server at a click of a button. But this should only be for later upload for example when there is wifi/network connectivity.

What is the best way to go about storing these List<NameValuePairs>?

link|improve this question

80% accept rate
feedback

3 Answers

Well, your best bet is to store the data in Android's SQLite database:

http://developer.android.com/guide/topics/data/data-storage.html#db

As an alternative you can just serialize your objects to a file, but that might be too much of a hussle if the data is big.

Then you can have a service that runs in the background and sends data from the local db to the server when possible.

link|improve this answer
I'd rather store the List object rather than the data within the List. And yes I'd rather not save them to a big file either. – Neeta Feb 13 at 11:43
Well then I'm thinking you should make a helper class that does all the boiler-plate necessary SQL requests to store an instance of your list (and the elements it contains) to the DB. – Shivan Dragon Feb 13 at 11:46
What do you mean by storing an instance of the list? – Neeta Feb 13 at 11:52
I mean, the Object representing your particular List. You make a new object for your List (probablly new ArrayList()), you add NameValuePairs instances to it, you get the instance of your List – Shivan Dragon Feb 13 at 12:04
And how will the NameValuePairs be stored in the database? – Neeta Feb 13 at 12:05
show 3 more comments
feedback

Here are your storage options: http://developer.android.com/guide/topics/data/data-storage.html

I would imagine that depending on the kind of data and size, SharedPreferences or SqlLite could be useful for you. You can back DB with a ContentResolver and implement sync (SyncService) to upload to server. In this case, the Android OS will intelligently sync your data on the cloud when network is reachable.

link|improve this answer
feedback
up vote 0 down vote accepted

Decided to save everything as a long string of name value pairs seperated by ampersands for easy upload to database when sending to php server.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.