List<Map<String,String>怎么封装到JSON对象中,然后还能还原

2024-12-16 14:13:11
推荐回答(1个)
回答1:

String jstr="{'json':'jsonvalue','bool':true,'int':1,'double':'20.5'}"; JSONObject json=JSONObject.fromObject(jstr); boolean bool=json.getBoolean("bool"); int i=json.getInt("int"); double d=json.getDouble("double"); String valu...