关于通过HtmlUnit下载文件的问题

发布于 2024-10-17 01:16:55 字数 195 浏览 1 评论 0原文

所以事情是这样的:

我正在访问一些网页(使用 HtmlUnit),上面有一个按钮。我以编程方式单击该按钮,

当我通过浏览器正常单击该按钮时,我有机会将文件保存在硬盘上。 问题是,我希望能够以编程方式获取该文件。并将其保存到特定文件夹,如果文件大小大于特定数字,则应停止下载,可以通过 HtmlUnit 完成此操作吗?

太感谢了!

So here's the deal:

I am accessing some webpage(using HtmlUnit) on which there's a button. I programatically click that button,

When I click that button normally through the browser, I am given the chance to save a file on my hard drive.
The thing is, I want to be able to get that file programatically. and save it to a specific folder, if the file size is bigger than a specific number, the downloading should be stopped, Can this be done via HtmlUnit?

Thank you so much!

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

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

发布评论

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

评论(2

老旧海报 2024-10-24 01:16:55

就我而言,我想要下载的文件是一个文本文件,下面是我使用的代码。希望它能让您了解要做什么。

InputStream inputStream = new HttpWebConnection(client).getResponse(req).getContentAsStream();

        StringWriter writer = new StringWriter();
        IOUtils.copy(inputStream, writer, "UTF8");
        String theString = writer.toString();

        System.out.println(theString);

In my case the file I wanted to download was a text file and below is the code I used. Hope so it gives you an idea about what is to be done.

InputStream inputStream = new HttpWebConnection(client).getResponse(req).getContentAsStream();

        StringWriter writer = new StringWriter();
        IOUtils.copy(inputStream, writer, "UTF8");
        String theString = writer.toString();

        System.out.println(theString);
无力看清 2024-10-24 01:16:55

简短的回答...不,这是不可能的。

有一种 firefox/profile 基本方法可以部分执行此操作那。

以及针对纯文本文件的 getPageSource() 的解决方法。

否则...我正在寻找类似的东西。如果您找到更好的黑客,请告诉您...

Short answer... no, this cannot be done.

There is a firefox/profile base way to partially do that.

And the workaround with getPageSource() for plain text files.

Otherwise... I'm looking for similar thing. Let you know if you find a better hack...

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