I am getting JSON string from website. I have data which looks like this (JSON Array)
myconf= {URL:[blah,blah]}
but some times this data can be (JSON object)
myconf= {URL:{try}}
also it can be empty
myconf= {}
I want to do different operations when its object and different when its an array. Till now in my code I was trying to consider only arrays so I am getting following exception. But I am not able to check for objects or arrays.
I am getting following exception
org.json.JSONException: JSONObject["URL"] is not a JSONArray.
Can anyone suggest how it can be fixed. Here I know that objects and arrays are the instances of the JSON object. But I couldn’t find a function with which I can check whether the given instance is a array or object.
I have tried using this if condition but with no success
if ( myconf.length() == 0 ||myconf.has("URL")!=true||myconf.getJSONArray("URL").length()==0)
JSON objects and arrays are instances of
JSONObjectandJSONArray, respectively. Add to that the fact thatJSONObjecthas agetmethod that will return you an object you can check the type of yourself without worrying about ClassCastExceptions, and there ya go.