Here you can find the source of parseJSON(String s)
public static JSONObject parseJSON(String s)
//package com.java2s; import org.json.JSONObject; public class Main { public static JSONObject parseJSON(String s) { JSONObject jsonobject;/*from w w w . j a v a 2 s . c om*/ try { jsonobject = new JSONObject(s); return jsonobject; } catch (Exception e) { e.printStackTrace(); jsonobject = new JSONObject(); // TODO: handle exception } return jsonobject; } }