/** * */ package buzzerproxy; import java.util.ArrayList; import buzzerproxy.Http; /** * @author Enger * */ public class HTTPTest { private static String startUrl = "http://bobgentile.com/Music/"; /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub Http h = new Http(); ArrayList r = h.getRecursively(startUrl); System.out.println("UrlArraySize: " + r.size()); } }