大文件上的filereader api

时间:2014-09-12 13:58:34

标签: javascript html5 filereader

我的文件阅读器api代码到目前为止一直运行良好,直到有一天我从我的一个客户端获得了一个280MB的txt文件。页面只是在Chrome中直接崩溃,在Firefox中没有任何反应。

// create new reader object 
var fileReader = new FileReader(); 

// read the file as text 
fileReader.readAsText( $files[i] );  
fileReader.onload = function(e) 
{   // read all the information about the file 
    // do sanity checks here etc... 
    $timeout( function() 
    {    
        // var fileContent = e.target.result;
        // get the first line 
        var firstLine = e.target.result.slice(0, e.target.result.indexOf("\n") ); }}

我上面要做的是获取第一个换行符,以便我可以获得文件的列长度。我不应该把它看作文字吗?如何在不破坏大文件页面的情况下获取文件的列长度?

2 个答案:

答案 0 :(得分:58)

您的应用程序无法处理大文件,因为您在处理之前将整个文件读入内存。这种低效率可以通过流式传输文件(读取小尺寸的块)来解决,因此您只需要将一部分文件保存在内存中。

File个对象也是Blob的一个实例,它提供.slice方法来创建较小的文件视图。

以下示例假设输入为ASCII(演示:http://jsfiddle.net/mw99v8d4/)。

function findColumnLength(file, callback) {
    // 1 KB at a time, because we expect that the column will probably small.
    var CHUNK_SIZE = 1024;
    var offset = 0;
    var fr = new FileReader();
    fr.onload = function() {
        var view = new Uint8Array(fr.result);
        for (var i = 0; i < view.length; ++i) {
            if (view[i] === 10 || view[i] === 13) {
                // \n = 10 and \r = 13
                // column length = offset + position of \r or \n
                callback(offset + i);
                return;
            }
        }
        // \r or \n not found, continue seeking.
        offset += CHUNK_SIZE;
        seek();
    };
    fr.onerror = function() {
        // Cannot read file... Do something, e.g. assume column size = 0.
        callback(0);
    };
    seek();

    function seek() {
        if (offset >= file.size) {
            // No \r or \n found. The column size is equal to the full
            // file size
            callback(file.size);
            return;
        }
        var slice = file.slice(offset, offset + CHUNK_SIZE);
        fr.readAsArrayBuffer(slice);
    }
}

前一个片段计算换行前的字节数。计算由多字节字符组成的文本中的字符数稍微困难一些,因为您必须考虑到块中的最后一个字节可能是多字节字符的一部分的可能性。

答案 1 :(得分:1)

有一个很棒的名为Papa Parse的库,它以优雅的方式完成!它可以真正处理大文件,也可以使用web worker。

试试他们提供的演示:https://www.papaparse.com/demo