String test ="{"abc":null}";
JSONObject testObj = new JSONObject(test);
giving error as abc is not a JSONObject. How can I convert this string to JSON Object?
In Actual implementation 'test' string i am reading from a file.. so escape sequence not added..!!