I am trying to use some of the json conversion methods available in net.sf.json.JSONArray and net.sf.json.JSONObject but it appears these objects are not compatible with (Androids) org.json.JSONArray and org.json.JSONObject objects. Essentially what I am looking for is an efficient and easy way to transform a valid JSON String into Java objects like Arrays. The net.sf.json package objects appear to have such conversion methods.

My question is - Is net.sf.json.JSONArray compatible with org.json.JSONArray and if so how can these objects be used? Attempting to cast from one to the other gets me nowhere.

JSONArray jsonArray = new JSONArray();
jsonArray = orgJSONArray; 
jsonArray = (JSONArray)orgJSONArray;

If I can't use net.sf.json with org.json objects, in the realm of Android what is the best and most efficient way to convert a valid JSON string to a Java Array object.

link|improve this question
Copy those libs to your project lib and change import statements to net.sf.json... AFAIK it should work. – thinksteep Jan 24 at 1:21
attempting this the immediate down side appears to be you have to abandon all android json objects and associated functions because they are bound to objects spawned from org.json. – Stephen Bennett Jan 24 at 16:28
yes, at a time you can use either one of those libraries only. – thinksteep Jan 24 at 16:31
feedback

1 Answer

By definition net.sf.json.JSONObject is not "compatible" with org.json.JSONObject unless one is a subclass of the other. Even if the two classes were to have word-for-word identical definitions, the different package names would make them totally different and incompatible classes.

link|improve this answer
I understand....... it's a challenge. How about using the net.sf.json objects as custom objects with the org.json.JSONObject and org.json.JSONArray as their superclasses? – Stephen Bennett Jan 24 at 16:27
@StephenBennett -- Then you'd have to edit and recompile net.sf.json. – Hot Licks Jan 24 at 16:35
feedback

Your Answer

 
or
required, but never shown

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