能取出json中如下格式中key对应的value吗
2016-04-25
展开全部
看看你r json对象是怎么产生的 [] 这个符号应该不是json对象
public static void main(String[] args) throws JSONException {
String str = "{userinfo:[\"userInfo.name\":\"张三\",\"userId\":\"1\"]}";
Map<String, String> map = new HashMap<String, String>();
map.put("userInfo.name", "张三");
map.put("userId", "1");
JSONObject jsonObject = new JSONObject();
jsonObject.put("userInfo", map);
System.out.println(jsonObject);
JSONObject obj = new JSONObject(str);
System.out.println(obj);
}
public static void main(String[] args) throws JSONException {
String str = "{userinfo:[\"userInfo.name\":\"张三\",\"userId\":\"1\"]}";
Map<String, String> map = new HashMap<String, String>();
map.put("userInfo.name", "张三");
map.put("userId", "1");
JSONObject jsonObject = new JSONObject();
jsonObject.put("userInfo", map);
System.out.println(jsonObject);
JSONObject obj = new JSONObject(str);
System.out.println(obj);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询