public static void main(String[] args)
throws Exception
{
BasicConfigurator.configure();
HttpTool tool = new HttpTool();
HttpDoc doc = tool.retrieveDocument(new URL("http://usul27:a1rrakis@www.atkpremium.com/members/styles/standard/pages/index.php?thispage=modelupdate&thisupdate=083735&thismodel=len004"),
HttpConstants.GET,null);
HtmlDocument html=new HtmlDocument(new URL("http://localhost"), doc.getContent());
for (URL u: html.getLinks()) {
System.out.println(u);
}