json parse java library code example
Example 1: java parse json
Gson gson = new Gson();
gson.toJson(yourObject);
yourObject o = gson.fromJson(JSONString,yourObject.class);
Example 2: json parse java
public static void main(String[] args) throws Exception {
JSONObject jsonObject = (JSONObject) readJsonSimpleDemo("example.json");
System.out.println(jsonObject);
System.out.println(jsonObject.get("age"));
}
public static Object readJsonSimpleDemo(String filename) throws Exception {
FileReader reader = new FileReader(filename);
JSONParser jsonParser = new JSONParser();
return jsonParser.parse(reader);
}