|
I dont see how the first code could have worked
anyway :
while ((entrada = in.readLine()) !=
null) {
System.out.println(entrada); in.close(); } you are closing "in" after the very first read
.. maybe it should have been
while ((entrada = in.readLine()) !=
null)
System.out.println(entrada); in.close();
regards
Pramod Nair
|
Title: retrieving url
- retrieving url Tom Spindola
- Pramod Nair
