使用 HtmlUnit 下载非 html 文件

发布于 2024-08-13 06:36:46 字数 64 浏览 5 评论 0原文

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

I'm writing a JUnit test that involves the downloading of a file from the web app. How do I do that with HtmlUnit?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

A君 2024-08-20 06:36:46

我不知道什么样的文件,但可能是 测试可能会有所帮助。如果没有,请尝试在其他测试中寻找答案。

I don't what kind of file, but maybe code for this test might be helpful. If not try to find answers in other tests.

如歌彻婉言 2024-08-20 06:36:46

我敢打赌你已经解决了这个问题,但是由于这个问题在搜索“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
}

I'd bet you already solved the problem, but since this question is on google's top results when searching for "htmlunit download", here's the standard solution. downloadLink is the element with the link to the file you intend to download (a button, an input, an anchor...)

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
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文