如何在JavaScript中分块读取本地文件?
假设我的本地硬盘上有一个大小为 500 字节的文件,我想从中读取前 100 字节,而不将整个文件加载到内存中。如何借助 UniversalXPConnect
在 JavaScript 中实现这一点?当然,仅限 Firefox。
Say, I have a file that is 500 bytes in size on my local hard drive and I want to read first 100 bytes from it without loading the whole file into memory. How to accomplish that in JavaScript with the help of UniversalXPConnect
? In Firefox only, of course.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您要读取 ASCII 文本数据(无字符集转换):
更多信息: https://developer.mozilla.org/en/Code_snippets/File_I%2F%2FO
Assuming that you want to read ASCII text data (no character set conversion):
Further information: https://developer.mozilla.org/en/Code_snippets/File_I%2F%2FO