如何在JavaScript中分块读取本地文件?
我学会了如何借助 Firefox 中的 JavaScript 来按块读取本地文件( 如何在 JavaScript 中分块读取本地文件?)。
但我想知道如果我想读取一定范围的字节,不是前几个字节,而是100-200
,该怎么办?是否可以以某种方式设置偏移量?
I learned how to read a local file by chunks with the help of JavaScript in Firefox ( How to read a local file by chunks in JavaScript? ).
But I wonder what if I want to read a certain range of bytes, not first several, but, say, 100-200
? Is it possible to set the offsets somehow?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 nsISeekableStream 代替。它允许您在文件中
seek()
。Use
nsISeekableStream
instead. It allows you toseek()
in a file.