Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to save files from websites Using HtmlUnit. I am currently navigating to pages that have several anchors that use javascript onClick()="DownloadAttachment('attachmentId')" to get the files. The files can be of pretty much any type ( xls, doc, txt, pdf, jpg, etc). So far though I've been unable to find resources or examples that show how to save files using htmlUnit. I've been trying mainly to get AttachmentHandler to work for this as it seems the most likely to work, but have been unsuccessful. I was wondering if anyone else has managed to download files using HtmlUnit and could assist?

                                 **Nevermind.**

Immediately after asking I found a snippet that got an InputStream from a WebResponse, so I tried it with my download link and it worked.

HtmlElement anchorAttachment = (HtmlElement) pageETrackerItem.getByXPath("//table[@class='content']/tbody/tr[12]/td[2]/a").get(0);

InputStream is =anchorAttachment.click().getWebResponse().getContentAsStream();
try {

    OutputStream out = new FileOutputStream(new File("C:\\test.doc"));

    int read=0;
    byte[] bytes = new byte[1024];

    while((read = is.read(bytes)) != -1) {
        out.write(bytes, 0, read);
    }

    is.close();
    out.flush();
    out.close();    

    System.out.println("New file created!");
}
catch (IOException e){
    System.out.println(e.getMessage());
}
share|improve this question
1  
Source for AttachmentTest.java: htmlunit.svn.sourceforge.net/svnroot/htmlunit/trunk/htmlunit/… – miku Jun 27 '11 at 18:17
2  
@TheBeeKeeper: can you please answer the question yourself and then accept that answer? Also, you need to accept answers to previous questions if they fix your problem. – Zecas May 17 '12 at 11:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.