GithubHelp home page GithubHelp logo

Comments (2)

redchair123 avatar redchair123 commented on May 2, 2024

IE10 does not support readAsBinaryString. To test on IE I have been using
the Base64 method (generating the input and pasting into the text box).

FYI in this case readAsArrayBuffer is probably better.

I've also been looking for a more general solution that also works with
older IEs (using something like flash or silver light).

On Saturday, April 13, 2013, SKALIDHASAN wrote:

I have trouble reading the Uploaded File (XLSX) via FileReader API's
"readAsBinaryString" method in IE10. "readAsText" method works fine. Has
anyone come across this, does IE support this method? Am I missing
something. Pls find the snippet below:

function handleFileUpload(evt){

evt.stopPropagation();
evt.preventDefault();

var files = (evt.target.files || evt.dataTransfer.files);
var output = [];

for (var i = 0, f; f = files[i]; i++) {
output.push('

  • ', escape(f.name), ' (', f.type || 'n/a', ') - ', f.size, ' bytes, last modified: ', f.lastModifiedDate ?
    f.lastModifiedDate.toLocaleDateString() : 'n/a', '
  • ');

    var reader = new FileReader();
    reader.onload = function(e) {
        var data = e.target.result;
        alert("-- Data Length --" + data.length);
    

    };

     // Read in the XLSX file in Binary Mode.
     //reader.readAsBinaryString(f);//<-- does not work if this method is used in IE10 (10.0.9200.16540C0), but works on Chrome
       reader.readAsText(f);//<-- Works on both Chrome & IE10 (10.0.9200.16540C0)
    

    }//for

    }//handleFileUpload


    Reply to this email directly or view it on GitHubhttps://github.com//issues/22
    .

    from sheetjs.

    redchair123 avatar redchair123 commented on May 2, 2024

    @SKALIDHASAN I pushed a change so it works on IE10 (I also had to handle the 'dragenter' event). At a later time, I'll add support for older IEs

    from sheetjs.

    Related Issues (20)

    Recommend Projects

    • React photo React

      A declarative, efficient, and flexible JavaScript library for building user interfaces.

    • Vue.js photo Vue.js

      🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

    • Typescript photo Typescript

      TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

    • TensorFlow photo TensorFlow

      An Open Source Machine Learning Framework for Everyone

    • Django photo Django

      The Web framework for perfectionists with deadlines.

    • D3 photo D3

      Bring data to life with SVG, Canvas and HTML. 📊📈🎉

    Recommend Topics

    • javascript

      JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

    • web

      Some thing interesting about web. New door for the world.

    • server

      A server is a program made to process requests and deliver data to clients.

    • Machine learning

      Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

    • Game

      Some thing interesting about game, make everyone happy.

    Recommend Org

    • Facebook photo Facebook

      We are working to build community through open source technology. NB: members must have two-factor auth.

    • Microsoft photo Microsoft

      Open source projects and samples from Microsoft.

    • Google photo Google

      Google ❤️ Open Source for everyone.

    • D3 photo D3

      Data-Driven Documents codes.