使用HtmlUnit下载非html文件

时间:2009-12-07 07:33:53

标签: java htmlunit

我正在编写一个JUnit测试,涉及从Web应用程序下载文件。我如何使用HtmlUnit做到这一点?

2 个答案:

答案 0 :(得分:0)

我不是什么类型的文件,但是this测试的代码可能会有所帮助。如果没有尝试在其他测试中找到答案。

答案 1 :(得分:0)

我敢打赌你已经解决了这个问题,但是由于这个问题是google搜索“htmlunit download”时的最佳结果,这里是标准解决方案。 downloadLink是包含您要下载的文件的链接的元素(按钮,输入,锚点......)

try {
    InputStream is = downloadLink.click().getWebResponse().getContentAsStream();
    try {
        File f = new File("filename.extension");
        OutputStream os = new FileOutputStream(f);
        byte[] bytes = new byte[1024]; // make it bigger if you want. Some recommend 8x, others 100x
        while (read = is.read(bytes)) {
            os.write(bytes, 0, read);
        }
        os.close();
        is.close();
    } catch (IOException ex) {
        // Exception handling
    }
} catch (IOException ex) {
    // Exception handling
}