Show one document, by filename
URL webURL = null;
try {
System.err.println("*** Loading " + loc + "... ***");
webURL = new URL(loc);
BufferedReader is = new BufferedReader(
new InputStreamReader(webURL.openStream()));
String line;
while ((line = is.readLine()) != null) {
System.out.println(line);
}
is.close();
} catch (MalformedURLException e) {
System.err.println("Load failed: " + e);
} catch (IOException e) {
System.err.println("IOException: " + e);
}