String theLine;
try {
URL u = new URL(theURL);
Vector v = (Vector) u.getContent();
for (Enumeration e = v.elements() ; e.hasMoreElements() ;) {
String[] sa = (String[]) e.nextElement();
for (int i = 0; i < sa.length; i++) {
System.out.print(sa[i] + "\t");
}
System.out.println();
}
}
catch (IOException e) {
System.err.println(e);
}