繁体   English   中英

使用HtmlUnit下载非html文件

[英]Download a non html file with HtmlUnit

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

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

我敢打赌你已经解决了这个问题,但是因为这个问题是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
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM