System.out.println(getClass().getSimpleName() + ": Downloading Webpage from " + startUrl + uri);
Get get = new Get(startUrl + uri);
String result = get.executeAsString();
// System.out.println(result);
AnchorParser parser = new AnchorParser();
List<String> anchors = parser.parseAnchors(result);
for (String anchor : anchors) {
// System.out.println(anchor);
if (anchor.startsWith("./"))