i need to get a response from a org.json.JSONObject (args).
new Emitter.Listener() {
@Override
public void call(Object... args) {
try {
JSONObject response = new JSONObject(args[0].toString());
JSONObject data = (JSONObject) response.get("data");
Object defaultResponce = data.get("default");
Log.d(TAG, defaultResponce + "");
}
catch (JSONException e) {
e.printStackTrace();
}
}
}
Object defaultResponce = data.get("default"); equates to a 10 character, String "[B@ffc06c8"
The following image is the args response in the debugger. i need to get the pointed out value.

how do i retreive the value as it in in the debugger?
args[0].toString()contain?toStringoutput, but thedefaultResponceobject (by the way, it is spelled "response") indeed is an array? Does it show as an array in the debugger? What aboutinstanceof?