[Solved] String to Map [closed]


Do you really mean java.lang.Object or do you mean a class of your own making?

You can get into the java world if you have appropriately defined a your class with the following (Google Gson):

BossesClass hisClass = new Gson().fromJson(bossesString, BossesClass.class);

What you use as the key value (a String) in your map is your decision

solved String to Map [closed]