Coding error at open URL
- by Lobo
Hi,
I have the following method to open a URL API
String c="";
URL direccionURL;
try {
direccionURL = new URL("http://api.stackoverflow.com/1.0/users/523725");
BufferedReader in = new BufferedReader(new InputStreamReader(
direccionURL.openStream()));
String inputLine;
while ((inputLine = in.readLine()) != null)
…