3

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

4

2 回答 2

0

我敢打赌你已经解决了这个问题,但是由于这个问题在搜索“htmlunit 下载”时出现在谷歌的顶部结果中,所以这是标准解决方案。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
}
于 2013-12-06T23:12:24.517 回答
0

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

于 2009-12-07T07:58:08.313 回答