in = new ExcludeFilterInputStream(in, "</BODY", ">");
in = new ExcludeFilterInputStream(in, "<!--", "-->");
in = new ExcludeFilterInputStream(in, "<SCRIPT", "</SCRIPT>");
in = new ExcludeFilterInputStream(in, "<NOSCRIPT", "</NOSCRIPT>");
in = new ExcludeFilterInputStream(in, "<IFRAME", "</IFRAME>");
in = new ResolveUrlInputStream(in, "<A HREF=", ">", url);
in = new ResolveUrlInputStream(in, "SRC=\"", "\"", url);
try {
while ((b = in.read()) != -1) {
// System.out.print((char) b);
text.append((char) b);