I have an application that gets an api key and account name from a webservice, I am storing this apikey and account name for further use(multiple accounts and apikeys).

because you can only store primitive types in the sharedPreferences I parse the JSONArray toString. In another part of the application the user must be able to remove an account from his app. So I retrieve the string and Parse it back to an JSONArray.

how do I remove an JSONObject from the array and save it so I can parse it back to an string and save it again?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You should convert it in arraylist and remove object and create jsonarray,,,

ArrayList<String> list = new ArrayList<String>();
//First Position remove
list.remove(0);
JSONArray jsArray = new JSONArray(list);
link|improve this answer
thnx for the hint – Maikel Bollemeijer Jan 27 at 16:23
feedback

Your Answer

 
or
required, but never shown

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