user3359953
user3359953

Reputation: 47

Storing the values of an array for future refernce

I have an Arraylist, the values of which keep changing. These values should be saved because the next time the application opens, the previous values have to be there.Right now I just save it in an list but the next time the values are not saved. How can I store the values?

Upvotes: 0

Views: 66

Answers (1)

Ninad Pingale
Ninad Pingale

Reputation: 7079

You can store it in a file or a database table.

And read it next time when you open the application.

Upvotes: 4

Related Questions