if (!connected) {
connect();
}
DataInputStream dis = new DataInputStream(theConnection.getInputStream());
String time = dis.readLine();
String html = "<html><head><title>The Time at " +
url.getHost() + "</title></head><body><h1>" +
time + "</h1></body></html>";
return new StringBufferInputStream(html);