org json jsonexception 3a end of input at character 0 of

Solutions on MaxInterview for org json jsonexception 3a end of input at character 0 of by the best coders in the world

showing results for - "org json jsonexception 3a end of input at character 0 of"
Cristina
17 Aug 2019
1Change
2
3 JSONObject jsonObject = new JSONObject(result);
4to
5
6result=getJSONUrl(url);  //<< get json string from server
7JSONObject jsonObject = new JSONObject(result);