I have a JSONObject with some attributes that I want to convert into a Map
JSONObject
Map
Is there something that I can use from the
You can use Gson() (com.google.gson) library if you find any difficulty using Jackson.
HashMap yourHashMap = new Gson().fromJson(yourJsonObject.toString(), HashMap.class);