Convert JSON string to JSON object

https‮l.www//:‬autturi.com
Convert JSON string to JSON object
class Employee{
	public Employee(String string, int i) {
		name = string;
		age = i;
	}
	String name;
	int age;
}

String empString = "{\"age\":22,\"name\":\"Alice\"}";
JSONObject jsonObject1 = JSONObject.parseObject(empString);
Created Time:2017-09-06 07:07:18  Author:lautturi