Skip to content
Advertisement

How to save .xlsx data to file as a blob

I have a similar question to this question(Javascript: Exporting large text/csv file crashes Google Chrome):

I am trying to save the data created by excelbuilder.js‘s EB.createFile() function. If I put the file data as the href attribute value of a link, it works. However, when data is big, it crashes Chrome browser. Code are like this:

JavaScript

My code to create the data using excelbuilder.js is like follows:

JavaScript

As suggested by the answer of the similar question (Javascript: Exporting large text/csv file crashes Google Chrome), a blob needs to be created.

My problem is, what is saved in the file isn’t a valid Excel file that can be opened by Excel. The code that I use to save the blob is like this:

JavaScript

If I replace the [data] in the above code with [Base64.decode(data)], the contents in the file saved looks more like the expected excel data, but still cannot be opened by Excel.

Advertisement

Answer

I had the same problem as you. It turns out you need to convert the Excel data file to an ArrayBuffer.

JavaScript

The s2ab (string to array buffer) method (which I got from https://github.com/SheetJS/js-xlsx/blob/master/README.md) is:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement