Is there any way to convert a normal Java array or ArrayList to a Json Array in Android to pass the JSON object to a webservice?
ArrayList
ArrayList list = new ArrayList(); list.add("blah"); list.add("bleh"); JSONArray jsArray = new JSONArray(list);
This is only an example using a string arraylist