I get exceptions when running this code. I want to parse the url which is an array of json objects:
package com.example.compsci_734t;
import java.io.BufferedRea
Hi its due to some problem in the webservice maybe due toh the encoding problem its not your or android's problem. Just as you get response in that string just replace the character you get with "".
response= response.replace("","");
and then do your parsing after this. It worked for me. I hope it works for you also.....