URL url = new URL(
"http://dangalula.free.fr/psgtube/lesplusvues.txt");
BufferedReader in = new BufferedReader(new InputStreamReader(
url.openStream()));
String theLine;
while ((theLine = in.readLine()) != null) {
Log.v("log_tag","line is :" +theLine);
}
No comments:
Post a Comment