Parse Json to String android studio

后端 未结 4 1458
Happy的楠姐
Happy的楠姐 2021-01-19 14:58

I have this JSON object:

{
  \"1\":{
    \"id_module\":\"f83d6101cc\",
    \"adresse_mac\":\"00:6A:8E:16:C6:26\",
    \"mot_de_passe\":\"mp0001\",\"name\":\         


        
4条回答
  •  自闭症患者
    2021-01-19 15:45

    You should try this:

    String str = "your json string";
    JSONObject json = new JSONObject(str);
    String module = json.getJSONObject("1").getString("id_module");
    String address = json.getJSONObject("1").getString("adresse_mac");
    String module2 = json.getJSONObject("2").getString("id_module");  //from 2nd object
    

提交回复
热议问题