如何从输入流中特定位置的 URL 下载文件字节?

发布于 2024-11-25 04:36:24 字数 31 浏览 0 评论 0原文

如何从输入流中特定位置的 URL 下载文件字节?

How to download bytes of file from URL at specific location from in input-stream?

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

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

发布评论

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

评论(2

大姐,你呐 2024-12-02 04:36:24

您将必须“读取”所有字节。只需跳过您不需要的第一个即可。当您想要开始从流中保存数据时,仅保存所需的字节,然后关闭流。

根据类的不同,有像 skip() 这样的方法可以帮助您跳过不需要的字节。

You will have to "read" all the bytes. Just skip the first ones that you don't need. When you get to the point that you want to start saving data from the stream, save just the bytes you want and then close the stream.

Depending on the class there are methods like skip() than can help you skip past the bytes you don't want.

烂人 2024-12-02 04:36:24

从 URL 创建输入流,读取字节并对它们执行您想要的操作,例如

InutStream in = new URL("http://foo.bar").openStream();
OutputStream out = new FileOutputStream("/usr/foo/bar");
byte[] buf = new byte[1024];
int n = 0;

while((n = in.read(buf))) {
    out.write(buf, 0, n);
    out.flush();
}

in.close();
out.close();

create input stream from URL, read bytes and do what you want with them, e.g.

InutStream in = new URL("http://foo.bar").openStream();
OutputStream out = new FileOutputStream("/usr/foo/bar");
byte[] buf = new byte[1024];
int n = 0;

while((n = in.read(buf))) {
    out.write(buf, 0, n);
    out.flush();
}

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