if (!connected) connect();
String header = "<html><head><title>The Time at "
+ url.getHost() + "</title></head><body><h1>";
String footer = "</h1></body></html>";
InputStream in1 = new ByteArrayInputStream(header.getBytes("8859_1"));
InputStream in2 = this.connection.getInputStream();
InputStream in3 = new ByteArrayInputStream(footer.getBytes("8859_1"));
SequenceInputStream result = new SequenceInputStream(in1, in2);
result = new SequenceInputStream(result, in3);
return result;