SoItBegins
2
Q:

gson parse json

Gson gson = new Gson();

// 1. Java object to JSON file
gson.toJson(obj, new FileWriter("C:\\fileName.json"));

// 2. Java object to JSON string
String json = gson.toJson(obj);
0
Gson gson = new Gson();

// 1. JSON file to Java object
Object object = gson.fromJson(new FileReader("C:\\fileName.json"), Object.class);

// 2. JSON string to Java object
String json = "{'name' : 'mkyong'}";
Object object = gson.fromJson(json, Staff.class);
0

Tags

Related

New to Communities?

Join the community