File
オブジェクト(FileSystem API を使用して保存されたオブジェクトなど)がある場合は、ファイル全体をメモリに読み込まずに、そのオブジェクトにシークしてチャンクを読み取ることができます。
var url = "filesystem:http://example.com/temporary/myfile.zip";
window.webkitResolveLocalFileSystemURL(url, function(fileEntry) {
fileEntry.file(function(file) {
var reader = new FileReader();
reader.onload = function(e) {
var ab = e.target.result; // arrayBuffer containing bytes 0-10 of file.
var uInt8Arr = new Uint8Array(ab);
...
};
var blob = file.webkitSlice(0, 10, "application/zip"); // mimetype is optional
reader.readAsArrayBuffer(blob);
}, errorHandler);
}, errorHandler);