Convert JSON to Map

后端 未结 17 2866
天涯浪人
天涯浪人 2020-11-22 10:20

What is the best way to convert a JSON code as this:

{ 
    \"data\" : 
    { 
        \"field1\" : \"value1\", 
        \"field2\" : \"value2\"
    }
}
         


        
17条回答
  •  情歌与酒
    2020-11-22 11:01

    java.lang.reflect.Type mapType = new TypeToken>(){}.getType();
    Gson gson = new Gson();
    Map categoryicons = gson.fromJson(json, mapType );
    

提交回复
热议问题