转换JSON对象

时间:2014-03-28 05:21:59

标签: java json

我有一个像Json这样的对象,

{"Id":1492,"name":"Antony","School":"National School"}

现在我需要将这些对象分开。我想得到这样的东西,

Id = 1492
name = Antony
School = National School

因此我需要将这些数据分别存储在db表中。

请帮忙。

非常感谢

2 个答案:

答案 0 :(得分:0)

使用 http://code.google.com/p/json-simple/

JSONObject json = (JSONObject)new JSONParser().parse("{\"Id\":1492,\"name\":\"Antony\",\"School\":\"National School\"}");
System.out.println("id=" + json.get("Id"));
System.out.println("name=" + json.get("name"));

答案 1 :(得分:0)

希望它能帮到你 -

  var data = '{"Id":1492,"name":"Antony","School":"National School"}';
  var json = JSON.parse(data);

  var Id = json["Id"];

  var Id = json.Id;