This code will help u to read the html content of any web page, but your
application must convert the acquired html to application presentation, or u
may filter the html tags to get the data u need then display it as u want:
String line;
BufferedReader in;
try{
URL u = new URL("http://"+host+"/"+file);
In = new BufferedReader(new InputStreamReader(u.openStream()));
while ((line = in.readLine() != null)
{
System.out.println(line);
} } catch (MalformedURLException e) {e.printStackTrace();}
catch (IOException e) {e.printStackTrace();} }