如何从输入流中特定位置的 URL 下载文件字节?
如何从输入流中特定位置的 URL 下载文件字节?
How to download bytes of file from URL at specific location from in input-stream?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从输入流中特定位置的 URL 下载文件字节?
How to download bytes of file from URL at specific location from in input-stream?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您将必须“读取”所有字节。只需跳过您不需要的第一个即可。当您想要开始从流中保存数据时,仅保存所需的字节,然后关闭流。
根据类的不同,有像
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.从 URL 创建输入流,读取字节并对它们执行您想要的操作,例如
create input stream from URL, read bytes and do what you want with them, e.g.