2017-04-21 22:02:02 +00:00
|
|
|
# [SheetJS js-xlsx](http://sheetjs.com)
|
2012-12-04 19:27:20 +00:00
|
|
|
|
2015-04-02 20:32:22 +00:00
|
|
|
Parser and writer for various spreadsheet formats. Pure-JS cleanroom
|
2017-02-22 06:57:59 +00:00
|
|
|
implementation from official specifications, related documents, and test files.
|
|
|
|
Emphasis on parsing and writing robustness, cross-format feature compatibility
|
|
|
|
with a unified JS representation, and ES3/ES5 browser compatibility back to IE6.
|
|
|
|
|
2017-04-20 03:24:48 +00:00
|
|
|
This is the community version. We also offer a pro version with performance
|
2017-05-09 18:07:57 +00:00
|
|
|
enhancements, additional features by request, and dedicated support.
|
|
|
|
|
2017-02-22 06:57:59 +00:00
|
|
|
|
2017-04-20 03:24:48 +00:00
|
|
|
[**Pro Version**](http://sheetjs.com/pro)
|
2014-10-26 05:26:18 +00:00
|
|
|
|
2017-04-20 03:24:48 +00:00
|
|
|
[**Commercial Support**](http://sheetjs.com/support)
|
2017-03-10 17:33:08 +00:00
|
|
|
|
2017-07-27 20:07:51 +00:00
|
|
|
[**Rendered Documentation**](http://docs.sheetjs.com/)
|
2017-04-26 02:27:12 +00:00
|
|
|
|
2017-04-20 03:24:48 +00:00
|
|
|
[**In-Browser Demos**](http://sheetjs.com/demos)
|
|
|
|
|
|
|
|
[**Source Code**](http://git.io/xlsx)
|
|
|
|
|
2017-05-09 18:07:57 +00:00
|
|
|
[**Issues and Bug Reports**](https://github.com/sheetjs/js-xlsx/issues)
|
2017-03-13 06:46:37 +00:00
|
|
|
|
2017-05-09 18:07:57 +00:00
|
|
|
[**Other General Support Issues**](https://discourse.sheetjs.com)
|
|
|
|
|
|
|
|
[**File format support for known spreadsheet data formats:**](#file-formats)
|
2014-10-26 05:26:18 +00:00
|
|
|
|
2017-04-30 20:37:53 +00:00
|
|
|
<details>
|
2017-05-09 18:07:57 +00:00
|
|
|
<summary><b>Graph of supported formats</b> (click to show)</summary>
|
|
|
|
|
|
|
|
![circo graph of format support](formats.png)
|
2017-04-30 20:37:53 +00:00
|
|
|
|
2017-04-03 00:16:03 +00:00
|
|
|
![graph legend](legend.png)
|
2012-12-04 19:27:20 +00:00
|
|
|
|
2017-04-30 20:37:53 +00:00
|
|
|
</details>
|
2017-02-03 20:50:45 +00:00
|
|
|
|
2017-05-09 18:07:57 +00:00
|
|
|
[**Browser Test**](http://oss.sheetjs.com/js-xlsx/tests/)
|
|
|
|
|
|
|
|
[![Build Status](https://saucelabs.com/browser-matrix/sheetjs.svg)](https://saucelabs.com/u/sheetjs)
|
|
|
|
|
|
|
|
[![Build Status](https://travis-ci.org/SheetJS/js-xlsx.svg?branch=master)](https://travis-ci.org/SheetJS/js-xlsx)
|
|
|
|
[![Build Status](https://semaphoreci.com/api/v1/sheetjs/js-xlsx/branches/master/shields_badge.svg)](https://semaphoreci.com/sheetjs/js-xlsx)
|
|
|
|
[![Coverage Status](http://img.shields.io/coveralls/SheetJS/js-xlsx/master.svg)](https://coveralls.io/r/SheetJS/js-xlsx?branch=master)
|
|
|
|
[![Dependencies Status](https://david-dm.org/sheetjs/js-xlsx/status.svg)](https://david-dm.org/sheetjs/js-xlsx)
|
|
|
|
[![NPM Downloads](https://img.shields.io/npm/dt/xlsx.svg)](https://npmjs.org/package/xlsx)
|
|
|
|
[![ghit.me](https://ghit.me/badge.svg?repo=sheetjs/js-xlsx)](https://ghit.me/repo/sheetjs/js-xlsx)
|
|
|
|
[![Analytics](https://ga-beacon.appspot.com/UA-36810333-1/SheetJS/js-xlsx?pixel)](https://github.com/SheetJS/js-xlsx)
|
|
|
|
|
2017-03-13 06:46:37 +00:00
|
|
|
## Table of Contents
|
|
|
|
|
2017-04-30 20:37:53 +00:00
|
|
|
<details>
|
2017-06-03 07:19:09 +00:00
|
|
|
<summary><b>Expand to show Table of Contents</b></summary>
|
2017-04-30 20:37:53 +00:00
|
|
|
|
2017-03-13 06:46:37 +00:00
|
|
|
<!-- toc -->
|
|
|
|
|
|
|
|
- [Installation](#installation)
|
|
|
|
* [JS Ecosystem Demos](#js-ecosystem-demos)
|
|
|
|
* [Optional Modules](#optional-modules)
|
|
|
|
* [ECMAScript 5 Compatibility](#ecmascript-5-compatibility)
|
2017-05-09 18:07:57 +00:00
|
|
|
- [Philosophy](#philosophy)
|
2017-03-13 06:46:37 +00:00
|
|
|
- [Parsing Workbooks](#parsing-workbooks)
|
2017-07-05 22:27:54 +00:00
|
|
|
* [Parsing Examples](#parsing-examples)
|
2017-06-10 01:47:42 +00:00
|
|
|
* [Streaming Read](#streaming-read)
|
2017-03-13 06:46:37 +00:00
|
|
|
- [Working with the Workbook](#working-with-the-workbook)
|
2017-07-05 22:27:54 +00:00
|
|
|
* [Parsing and Writing Examples](#parsing-and-writing-examples)
|
2017-03-13 06:46:37 +00:00
|
|
|
- [Writing Workbooks](#writing-workbooks)
|
2017-07-05 22:27:54 +00:00
|
|
|
* [Writing Examples](#writing-examples)
|
2017-04-16 04:32:13 +00:00
|
|
|
* [Streaming Write](#streaming-write)
|
2017-03-13 06:46:37 +00:00
|
|
|
- [Interface](#interface)
|
|
|
|
* [Parsing functions](#parsing-functions)
|
|
|
|
* [Writing functions](#writing-functions)
|
|
|
|
* [Utilities](#utilities)
|
2017-04-03 00:16:03 +00:00
|
|
|
- [Common Spreadsheet Format](#common-spreadsheet-format)
|
2017-03-13 06:46:37 +00:00
|
|
|
* [General Structures](#general-structures)
|
|
|
|
* [Cell Object](#cell-object)
|
2017-03-20 09:02:25 +00:00
|
|
|
+ [Data Types](#data-types)
|
2017-03-21 20:44:35 +00:00
|
|
|
+ [Dates](#dates)
|
2017-03-31 21:46:02 +00:00
|
|
|
* [Sheet Objects](#sheet-objects)
|
2017-04-01 07:32:12 +00:00
|
|
|
+ [Worksheet Object](#worksheet-object)
|
|
|
|
+ [Chartsheet Object](#chartsheet-object)
|
2017-03-13 06:46:37 +00:00
|
|
|
* [Workbook Object](#workbook-object)
|
2017-04-01 07:32:12 +00:00
|
|
|
+ [Workbook File Properties](#workbook-file-properties)
|
2017-04-11 22:15:36 +00:00
|
|
|
* [Workbook-Level Attributes](#workbook-level-attributes)
|
|
|
|
+ [Defined Names](#defined-names)
|
2017-06-01 21:22:11 +00:00
|
|
|
+ [Miscellaneous Workbook Properties](#miscellaneous-workbook-properties)
|
2017-03-20 09:02:25 +00:00
|
|
|
* [Document Features](#document-features)
|
|
|
|
+ [Formulae](#formulae)
|
|
|
|
+ [Column Properties](#column-properties)
|
2017-04-28 07:28:03 +00:00
|
|
|
+ [Row Properties](#row-properties)
|
2017-04-30 16:27:03 +00:00
|
|
|
+ [Number Formats](#number-formats)
|
2017-03-29 19:14:15 +00:00
|
|
|
+ [Hyperlinks](#hyperlinks)
|
2017-04-02 06:47:25 +00:00
|
|
|
+ [Cell Comments](#cell-comments)
|
2017-03-31 18:46:42 +00:00
|
|
|
+ [Sheet Visibility](#sheet-visibility)
|
2017-03-13 06:46:37 +00:00
|
|
|
- [Parsing Options](#parsing-options)
|
|
|
|
* [Input Type](#input-type)
|
|
|
|
* [Guessing File Type](#guessing-file-type)
|
|
|
|
- [Writing Options](#writing-options)
|
|
|
|
* [Supported Output Formats](#supported-output-formats)
|
|
|
|
* [Output Type](#output-type)
|
|
|
|
- [Utility Functions](#utility-functions)
|
2017-03-25 01:36:40 +00:00
|
|
|
* [Array of Arrays Input](#array-of-arrays-input)
|
2017-05-11 18:23:21 +00:00
|
|
|
* [Array of Objects Input](#array-of-objects-input)
|
2017-03-29 19:14:15 +00:00
|
|
|
* [HTML Table Input](#html-table-input)
|
2017-03-13 06:46:37 +00:00
|
|
|
* [Formulae Output](#formulae-output)
|
2017-04-03 00:16:03 +00:00
|
|
|
* [Delimiter-Separated Output](#delimiter-separated-output)
|
|
|
|
+ [UTF-16 Unicode Text](#utf-16-unicode-text)
|
2017-05-16 17:45:35 +00:00
|
|
|
* [HTML Output](#html-output)
|
2017-03-13 06:46:37 +00:00
|
|
|
* [JSON](#json)
|
|
|
|
- [File Formats](#file-formats)
|
|
|
|
* [Excel 2007+ XML (XLSX/XLSM)](#excel-2007-xml-xlsxxlsm)
|
|
|
|
* [Excel 2.0-95 (BIFF2/BIFF3/BIFF4/BIFF5)](#excel-20-95-biff2biff3biff4biff5)
|
|
|
|
* [Excel 97-2004 Binary (BIFF8)](#excel-97-2004-binary-biff8)
|
|
|
|
* [Excel 2003-2004 (SpreadsheetML)](#excel-2003-2004-spreadsheetml)
|
|
|
|
* [Excel 2007+ Binary (XLSB, BIFF12)](#excel-2007-binary-xlsb-biff12)
|
2017-04-03 00:16:03 +00:00
|
|
|
* [Delimiter-Separated Values (CSV/TXT)](#delimiter-separated-values-csvtxt)
|
2017-04-04 16:09:41 +00:00
|
|
|
* [Other Workbook Formats](#other-workbook-formats)
|
|
|
|
+ [Lotus 1-2-3 (WKS/WK1/WK2/WK3/WK4/123)](#lotus-1-2-3-wkswk1wk2wk3wk4123)
|
|
|
|
+ [Quattro Pro (WQ1/WQ2/WB1/WB2/WB3/QPW)](#quattro-pro-wq1wq2wb1wb2wb3qpw)
|
|
|
|
+ [OpenDocument Spreadsheet (ODS/FODS)](#opendocument-spreadsheet-odsfods)
|
|
|
|
+ [Uniform Office Spreadsheet (UOS1/2)](#uniform-office-spreadsheet-uos12)
|
2017-04-01 07:32:12 +00:00
|
|
|
* [Other Single-Worksheet Formats](#other-single-worksheet-formats)
|
|
|
|
+ [dBASE and Visual FoxPro (DBF)](#dbase-and-visual-foxpro-dbf)
|
|
|
|
+ [Symbolic Link (SYLK)](#symbolic-link-sylk)
|
2017-04-03 00:16:03 +00:00
|
|
|
+ [Lotus Formatted Text (PRN)](#lotus-formatted-text-prn)
|
2017-04-01 07:32:12 +00:00
|
|
|
+ [Data Interchange Format (DIF)](#data-interchange-format-dif)
|
|
|
|
+ [HTML](#html)
|
2017-03-13 06:46:37 +00:00
|
|
|
- [Testing](#testing)
|
2017-04-13 17:05:42 +00:00
|
|
|
* [Node](#node)
|
|
|
|
* [Browser](#browser)
|
2017-03-13 06:46:37 +00:00
|
|
|
* [Tested Environments](#tested-environments)
|
|
|
|
* [Test Files](#test-files)
|
|
|
|
- [Contributing](#contributing)
|
2017-04-09 07:11:08 +00:00
|
|
|
* [OSX/Linux](#osxlinux)
|
|
|
|
* [Windows](#windows)
|
2017-05-16 17:45:35 +00:00
|
|
|
* [Tests](#tests)
|
2017-03-13 06:46:37 +00:00
|
|
|
- [License](#license)
|
|
|
|
- [References](#references)
|
|
|
|
|
|
|
|
<!-- tocstop -->
|
2017-02-10 19:23:01 +00:00
|
|
|
|
2017-04-30 20:37:53 +00:00
|
|
|
</details>
|
|
|
|
|
2012-12-04 19:27:20 +00:00
|
|
|
## Installation
|
|
|
|
|
2017-05-09 18:07:57 +00:00
|
|
|
In the browser, just add a script tag:
|
2012-12-04 19:27:20 +00:00
|
|
|
|
2017-05-09 18:07:57 +00:00
|
|
|
```html
|
|
|
|
<script lang="javascript" src="dist/xlsx.full.min.js"></script>
|
2016-12-31 08:20:45 +00:00
|
|
|
```
|
2012-12-04 19:27:20 +00:00
|
|
|
|
2017-05-09 18:07:57 +00:00
|
|
|
With [npm](https://www.npmjs.org/package/xlsx):
|
2012-12-04 19:27:20 +00:00
|
|
|
|
2017-05-09 18:07:57 +00:00
|
|
|
```bash
|
|
|
|
$ npm install xlsx
|
2016-12-31 08:20:45 +00:00
|
|
|
```
|
2014-04-23 01:37:08 +00:00
|
|
|
|
2015-04-02 20:32:22 +00:00
|
|
|
With [bower](http://bower.io/search/?q=js-xlsx):
|
2014-04-23 01:37:08 +00:00
|
|
|
|
2016-12-31 08:20:45 +00:00
|
|
|
```bash
|
|
|
|
$ bower install js-xlsx
|
|
|
|
```
|
2014-04-23 01:37:08 +00:00
|
|
|
|
|
|
|
CDNjs automatically pulls the latest version and makes all versions available at
|
|
|
|
<http://cdnjs.com/libraries/xlsx>
|
|
|
|
|
2017-03-10 17:33:08 +00:00
|
|
|
### JS Ecosystem Demos
|
|
|
|
|
|
|
|
The `demos` directory includes sample projects for:
|
|
|
|
|
2017-09-05 05:26:50 +00:00
|
|
|
**JS Frameworks and APIs**
|
2017-06-21 23:10:36 +00:00
|
|
|
- [`angular 1.x`](demos/angular/)
|
|
|
|
- [`angular 2.x / 4.x`](demos/angular2/)
|
2017-05-24 22:52:35 +00:00
|
|
|
- [`meteor`](demos/meteor/)
|
2017-09-05 05:26:50 +00:00
|
|
|
- [`vue 2.x`](demos/vue/)
|
|
|
|
- [`XMLHttpRequest and fetch`](demos/xhr/)
|
2017-08-10 23:46:34 +00:00
|
|
|
|
|
|
|
**JS Bundlers and Tooling**
|
|
|
|
- [`browserify`](demos/browserify/)
|
2017-03-23 17:11:31 +00:00
|
|
|
- [`requirejs`](demos/requirejs/)
|
2017-06-08 06:19:11 +00:00
|
|
|
- [`rollup`](demos/rollup/)
|
2017-03-23 17:11:31 +00:00
|
|
|
- [`systemjs`](demos/systemjs/)
|
2017-09-05 05:26:50 +00:00
|
|
|
- [`webpack 2.x`](demos/webpack/)
|
2017-03-10 17:33:08 +00:00
|
|
|
|
2017-08-10 23:46:34 +00:00
|
|
|
**JS Platforms and Integrations**
|
|
|
|
- [`Adobe ExtendScript`](demos/extendscript/)
|
2017-08-19 23:06:34 +00:00
|
|
|
- [`Headless Browsers`](demos/headless/)
|
2017-08-10 23:46:34 +00:00
|
|
|
- [`canvas-datagrid`](demos/datagrid/)
|
2017-09-05 05:26:50 +00:00
|
|
|
- [`Swift JSC and other engines`](demos/altjs/)
|
2017-08-10 23:46:34 +00:00
|
|
|
|
2017-02-22 06:57:59 +00:00
|
|
|
### Optional Modules
|
2014-04-23 01:37:08 +00:00
|
|
|
|
2017-05-24 22:52:35 +00:00
|
|
|
<details>
|
|
|
|
<summary><b>Optional features</b> (click to show)</summary>
|
|
|
|
|
2015-04-02 20:32:22 +00:00
|
|
|
The node version automatically requires modules for additional features. Some
|
2014-05-01 00:24:27 +00:00
|
|
|
of these modules are rather large in size and are only needed in special
|
|
|
|
circumstances, so they do not ship with the core. For browser use, they must
|
|
|
|
be included directly:
|
2014-04-23 01:37:08 +00:00
|
|
|
|
2016-12-31 08:20:45 +00:00
|
|
|
```html
|
2017-02-03 20:50:45 +00:00
|
|
|
<!-- international support from js-codepage -->
|
2016-12-31 08:20:45 +00:00
|
|
|
<script src="dist/cpexcel.js"></script>
|
|
|
|
```
|
2014-04-23 01:37:08 +00:00
|
|
|
|
|
|
|
An appropriate version for each dependency is included in the dist/ directory.
|
|
|
|
|
|
|
|
The complete single-file version is generated at `dist/xlsx.full.min.js`
|
|
|
|
|
2017-03-13 06:46:37 +00:00
|
|
|
Webpack and browserify builds include optional modules by default. Webpack can
|
|
|
|
be configured to remove support with `resolve.alias`:
|
|
|
|
|
|
|
|
```js
|
|
|
|
/* uncomment the lines below to remove support */
|
|
|
|
resolve: {
|
|
|
|
alias: { "./dist/cpexcel.js": "" } // <-- omit international support
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2017-05-24 22:52:35 +00:00
|
|
|
</details>
|
2017-03-13 06:46:37 +00:00
|
|
|
|
2017-02-22 06:57:59 +00:00
|
|
|
### ECMAScript 5 Compatibility
|
2014-06-03 18:39:46 +00:00
|
|
|
|
|
|
|
Since xlsx.js uses ES5 functions like `Array#forEach`, older browsers require
|
|
|
|
[Polyfills](http://git.io/QVh77g). This repo and the gh-pages branch include
|
|
|
|
[a shim](https://github.com/SheetJS/js-xlsx/blob/master/shim.js)
|
|
|
|
|
|
|
|
To use the shim, add the shim before the script tag that loads xlsx.js:
|
|
|
|
|
2016-12-31 08:20:45 +00:00
|
|
|
```html
|
|
|
|
<script type="text/javascript" src="/path/to/shim.js"></script>
|
|
|
|
```
|
2014-06-03 18:39:46 +00:00
|
|
|
|
2017-05-09 18:07:57 +00:00
|
|
|
## Philosophy
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary><b>Philosophy</b> (click to show)</summary>
|
|
|
|
|
|
|
|
Prior to SheetJS, APIs for processing spreadsheet files were format-specific.
|
|
|
|
Third-party libraries either supported one format, or they involved a separate
|
|
|
|
set of classes for each supported file type. Even though XLSB was introduced in
|
|
|
|
Excel 2007, nothing outside of SheetJS or Excel supported the format.
|
|
|
|
|
|
|
|
To promote a format-agnostic view, js-xlsx starts from a pure-JS representation
|
|
|
|
that we call the ["Common Spreadsheet Format"](#common-spreadsheet-format).
|
2017-08-01 05:50:53 +00:00
|
|
|
Emphasizing a uniform object representation enables new features like format
|
2017-05-09 18:07:57 +00:00
|
|
|
conversion (e.g. reading an XLSX template and saving as XLS) and circumvents the
|
|
|
|
"class trap". By abstracting the complexities of the various formats, tools
|
|
|
|
need not worry about the specific file type!
|
|
|
|
|
|
|
|
A simple object representation combined with careful coding practices enables
|
|
|
|
use cases in older browsers and in alternative environments like ExtendScript
|
|
|
|
and Web Workers. It is always tempting to use the latest and greatest features,
|
|
|
|
but they tend to require the latest versions of browsers, limiting usability.
|
|
|
|
|
|
|
|
Utility functions capture common use cases like generating JS objects or HTML.
|
|
|
|
Most simple operations should only require a few lines of code. More complex
|
|
|
|
operations generally should be straightforward to implement.
|
|
|
|
|
|
|
|
Excel pushes the XLSX format as default starting in Excel 2007. However, there
|
|
|
|
are other formats with more appealing properties. For example, the XLSB format
|
|
|
|
is spiritually similar to XLSX but files often tend up taking less than half the
|
|
|
|
space and open much faster! Even though an XLSX writer is available, other
|
|
|
|
format writers are available so users can take advantage of the unique
|
|
|
|
characteristics of each format.
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
2014-05-28 18:31:33 +00:00
|
|
|
## Parsing Workbooks
|
2012-12-04 19:27:20 +00:00
|
|
|
|
2014-10-26 05:26:18 +00:00
|
|
|
For parsing, the first step is to read the file. This involves acquiring the
|
|
|
|
data and feeding it into the library. Here are a few common scenarios:
|
2012-12-04 19:27:20 +00:00
|
|
|
|
2017-04-30 20:37:53 +00:00
|
|
|
<details>
|
|
|
|
<summary><b>nodejs read a file</b> (click to show)</summary>
|
2012-12-04 19:27:20 +00:00
|
|
|
|
2016-12-31 08:20:45 +00:00
|
|
|
```js
|
2014-05-28 18:31:33 +00:00
|
|
|
if(typeof require !== 'undefined') XLSX = require('xlsx');
|
|
|
|
var workbook = XLSX.readFile('test.xlsx');
|
|
|
|
/* DO SOMETHING WITH workbook HERE */
|
|
|
|
```
|
2014-05-22 12:16:51 +00:00
|
|
|
|
2017-04-30 20:37:53 +00:00
|
|
|
</details>
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary><b>Browser read TABLE element from page</b> (click to show)</summary>
|
2017-03-29 19:14:15 +00:00
|
|
|
|
|
|
|
```js
|
|
|
|
var worksheet = XLSX.utils.table_to_book(document.getElementById('tableau'));
|
|
|
|
/* DO SOMETHING WITH workbook HERE */
|
|
|
|
```
|
|
|
|
|
2017-04-30 20:37:53 +00:00
|
|
|
</details>
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary><b>Browser download file (ajax)</b> (click to show)</summary>
|
|
|
|
|
|
|
|
Note: for a more complete example that works in older browsers, check the demo
|
|
|
|
at <http://oss.sheetjs.com/js-xlsx/ajax.html>):
|
2014-05-28 18:31:33 +00:00
|
|
|
|
2016-12-31 08:20:45 +00:00
|
|
|
```js
|
2014-05-28 18:31:33 +00:00
|
|
|
/* set up XMLHttpRequest */
|
|
|
|
var url = "test_files/formula_stress_test_ajax.xlsx";
|
|
|
|
var oReq = new XMLHttpRequest();
|
|
|
|
oReq.open("GET", url, true);
|
|
|
|
oReq.responseType = "arraybuffer";
|
|
|
|
|
|
|
|
oReq.onload = function(e) {
|
|
|
|
var arraybuffer = oReq.response;
|
|
|
|
|
|
|
|
/* convert data to binary string */
|
|
|
|
var data = new Uint8Array(arraybuffer);
|
|
|
|
var arr = new Array();
|
|
|
|
for(var i = 0; i != data.length; ++i) arr[i] = String.fromCharCode(data[i]);
|
|
|
|
var bstr = arr.join("");
|
|
|
|
|
|
|
|
/* Call XLSX */
|
|
|
|
var workbook = XLSX.read(bstr, {type:"binary"});
|
|
|
|
|
|
|
|
/* DO SOMETHING WITH workbook HERE */
|
|
|
|
}
|
|
|
|
|
|
|
|
oReq.send();
|
|
|
|
```
|
|
|
|
|
2017-04-30 20:37:53 +00:00
|
|
|
</details>
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary><b>Browser drag-and-drop</b> (click to show)</summary>
|
|
|
|
|
|
|
|
Drag-and-drop uses FileReader with readAsBinaryString or readAsArrayBuffer.
|
|
|
|
Note: readAsBinaryString and readAsArrayBuffer may not be available in every
|
|
|
|
browser. Use dynamic feature tests to determine which method to use.
|
2014-05-28 18:31:33 +00:00
|
|
|
|
2016-12-31 08:20:45 +00:00
|
|
|
```js
|
2017-02-03 20:50:45 +00:00
|
|
|
/* processing array buffers, only required for readAsArrayBuffer */
|
|
|
|
function fixdata(data) {
|
2017-03-13 06:46:37 +00:00
|
|
|
var o = "", l = 0, w = 10240;
|
|
|
|
for(; l<data.byteLength/w; ++l) o+=String.fromCharCode.apply(null,new Uint8Array(data.slice(l*w,l*w+w)));
|
|
|
|
o+=String.fromCharCode.apply(null, new Uint8Array(data.slice(l*w)));
|
|
|
|
return o;
|
2017-02-03 20:50:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var rABS = true; // true: readAsBinaryString ; false: readAsArrayBuffer
|
2014-05-28 18:31:33 +00:00
|
|
|
/* set up drag-and-drop event */
|
|
|
|
function handleDrop(e) {
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
var files = e.dataTransfer.files;
|
|
|
|
var i,f;
|
2017-02-03 20:50:45 +00:00
|
|
|
for (i = 0; i != files.length; ++i) {
|
|
|
|
f = files[i];
|
2014-05-28 18:31:33 +00:00
|
|
|
var reader = new FileReader();
|
|
|
|
var name = f.name;
|
|
|
|
reader.onload = function(e) {
|
|
|
|
var data = e.target.result;
|
|
|
|
|
2017-02-03 20:50:45 +00:00
|
|
|
var workbook;
|
|
|
|
if(rABS) {
|
|
|
|
/* if binary string, read with type 'binary' */
|
|
|
|
workbook = XLSX.read(data, {type: 'binary'});
|
|
|
|
} else {
|
|
|
|
/* if array buffer, convert to base64 */
|
|
|
|
var arr = fixdata(data);
|
|
|
|
workbook = XLSX.read(btoa(arr), {type: 'base64'});
|
|
|
|
}
|
2014-05-28 18:31:33 +00:00
|
|
|
|
|
|
|
/* DO SOMETHING WITH workbook HERE */
|
|
|
|
};
|
2017-02-03 20:50:45 +00:00
|
|
|
if(rABS) reader.readAsBinaryString(f);
|
|
|
|
else reader.readAsArrayBuffer(f);
|
2014-05-28 18:31:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
drop_dom_element.addEventListener('drop', handleDrop, false);
|
|
|
|
```
|
|
|
|
|
2017-04-30 20:37:53 +00:00
|
|
|
</details>
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary><b>Browser file upload form element</b> (click to show)</summary>
|
2014-07-28 13:22:32 +00:00
|
|
|
|
2016-12-31 08:20:45 +00:00
|
|
|
```js
|
2017-02-03 20:50:45 +00:00
|
|
|
/* fixdata and rABS are defined in the drag and drop example */
|
2014-07-28 13:22:32 +00:00
|
|
|
function handleFile(e) {
|
|
|
|
var files = e.target.files;
|
|
|
|
var i,f;
|
2017-02-03 20:50:45 +00:00
|
|
|
for (i = 0; i != files.length; ++i) {
|
|
|
|
f = files[i];
|
2014-07-28 13:22:32 +00:00
|
|
|
var reader = new FileReader();
|
|
|
|
var name = f.name;
|
|
|
|
reader.onload = function(e) {
|
|
|
|
var data = e.target.result;
|
|
|
|
|
2017-02-03 20:50:45 +00:00
|
|
|
var workbook;
|
|
|
|
if(rABS) {
|
|
|
|
/* if binary string, read with type 'binary' */
|
|
|
|
workbook = XLSX.read(data, {type: 'binary'});
|
|
|
|
} else {
|
|
|
|
/* if array buffer, convert to base64 */
|
|
|
|
var arr = fixdata(data);
|
|
|
|
workbook = XLSX.read(btoa(arr), {type: 'base64'});
|
|
|
|
}
|
2014-07-28 13:22:32 +00:00
|
|
|
|
|
|
|
/* DO SOMETHING WITH workbook HERE */
|
|
|
|
};
|
|
|
|
reader.readAsBinaryString(f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
input_dom_element.addEventListener('change', handleFile, false);
|
|
|
|
```
|
|
|
|
|
2017-04-30 20:37:53 +00:00
|
|
|
</details>
|
|
|
|
|
|
|
|
|
2017-07-05 22:27:54 +00:00
|
|
|
### Parsing Examples
|
2017-04-16 04:32:13 +00:00
|
|
|
|
|
|
|
- <http://oss.sheetjs.com/js-xlsx/> HTML5 File API / Base64 Text / Web Workers
|
|
|
|
|
|
|
|
Note that older versions of IE do not support HTML5 File API, so the base64 mode
|
2017-06-03 07:19:09 +00:00
|
|
|
is used for testing.
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary><b>Get base64 encoding on OSX / Windows</b> (click to show)</summary>
|
|
|
|
|
|
|
|
On OSX you can get the base64 encoding with:
|
2017-04-16 04:32:13 +00:00
|
|
|
|
|
|
|
```bash
|
|
|
|
$ <target_file base64 | pbcopy
|
|
|
|
```
|
|
|
|
|
|
|
|
On Windows XP and up you can get the base64 encoding using `certutil`:
|
|
|
|
|
|
|
|
```cmd
|
|
|
|
> certutil -encode target_file target_file.b64
|
|
|
|
```
|
|
|
|
|
|
|
|
(note: You have to open the file and remove the header and footer lines)
|
|
|
|
|
2017-06-03 07:19:09 +00:00
|
|
|
</details>
|
|
|
|
|
2017-04-16 04:32:13 +00:00
|
|
|
- <http://oss.sheetjs.com/js-xlsx/ajax.html> XMLHttpRequest
|
|
|
|
|
2017-06-10 01:47:42 +00:00
|
|
|
### Streaming Read
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary><b>Why is there no Streaming Read API?</b> (click to show)</summary>
|
2017-04-16 04:32:13 +00:00
|
|
|
|
|
|
|
The most common and interesting formats (XLS, XLSX/M, XLSB, ODS) are ultimately
|
|
|
|
ZIP or CFB containers of files. Neither format puts the directory structure at
|
|
|
|
the beginning of the file: ZIP files place the Central Directory records at the
|
2017-08-01 05:50:53 +00:00
|
|
|
end of the logical file, while CFB files can place the storage info anywhere in
|
2017-04-16 04:32:13 +00:00
|
|
|
the file! As a result, to properly handle these formats, a streaming function
|
|
|
|
would have to buffer the entire file before commencing. That belies the
|
2017-06-10 01:47:42 +00:00
|
|
|
expectations of streaming, so we do not provide any streaming read API.
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
|
|
|
When dealing with Readable Streams, the easiest approach is to buffer the stream
|
|
|
|
and process the whole thing at the end. This can be done with a temporary file
|
|
|
|
or by explicitly concatenating the stream:
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary><b>Explicitly concatenating streams</b> (click to show)</summary>
|
|
|
|
|
|
|
|
```js
|
|
|
|
var fs = require('fs');
|
|
|
|
var XLSX = require('xlsx');
|
|
|
|
function process_RS(stream/*:ReadStream*/, cb/*:(wb:Workbook)=>void*/)/*:void*/{
|
|
|
|
var buffers = [];
|
|
|
|
stream.on('data', function(data) { buffers.push(data); });
|
|
|
|
stream.on('end', function() {
|
|
|
|
var buffer = Buffer.concat(buffers);
|
|
|
|
var workbook = XLSX.read(buffer, {type:"buffer"});
|
|
|
|
|
|
|
|
/* DO SOMETHING WITH workbook IN THE CALLBACK */
|
|
|
|
cb(workbook);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
More robust solutions are available using modules like `concat-stream`.
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary><b>Writing to filesystem first</b> (click to show)</summary>
|
|
|
|
|
|
|
|
This example uses [`tempfile`](https://npm.im/tempfile) for filenames:
|
|
|
|
|
|
|
|
```js
|
|
|
|
var fs = require('fs'), tempfile = require('tempfile');
|
|
|
|
var XLSX = require('xlsx');
|
|
|
|
function process_RS(stream/*:ReadStream*/, cb/*:(wb:Workbook)=>void*/)/*:void*/{
|
|
|
|
var fname = tempfile('.sheetjs');
|
|
|
|
console.log(fname);
|
|
|
|
var ostream = fs.createWriteStream(fname);
|
|
|
|
stream.pipe(ostream);
|
|
|
|
ostream.on('finish', function() {
|
|
|
|
var workbook = XLSX.readFile(fname);
|
|
|
|
fs.unlinkSync(fname);
|
|
|
|
|
|
|
|
/* DO SOMETHING WITH workbook IN THE CALLBACK */
|
|
|
|
cb(workbook);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
</details>
|
2017-04-16 04:32:13 +00:00
|
|
|
|
2014-10-26 05:26:18 +00:00
|
|
|
## Working with the Workbook
|
|
|
|
|
2015-04-02 20:32:22 +00:00
|
|
|
The full object format is described later in this README.
|
|
|
|
|
2017-05-24 22:52:35 +00:00
|
|
|
<details>
|
|
|
|
<summary><b>Reading a specific cell </b> (click to show)</summary>
|
|
|
|
|
2015-04-02 20:32:22 +00:00
|
|
|
This example extracts the value stored in cell A1 from the first worksheet:
|
|
|
|
|
2016-12-31 08:20:45 +00:00
|
|
|
```js
|
2015-04-02 20:32:22 +00:00
|
|
|
var first_sheet_name = workbook.SheetNames[0];
|
|
|
|
var address_of_cell = 'A1';
|
|
|
|
|
|
|
|
/* Get worksheet */
|
|
|
|
var worksheet = workbook.Sheets[first_sheet_name];
|
|
|
|
|
|
|
|
/* Find desired cell */
|
|
|
|
var desired_cell = worksheet[address_of_cell];
|
|
|
|
|
|
|
|
/* Get the value */
|
2017-03-14 08:19:51 +00:00
|
|
|
var desired_value = (desired_cell ? desired_cell.v : undefined);
|
2015-04-02 20:32:22 +00:00
|
|
|
```
|
|
|
|
|
2017-05-24 22:52:35 +00:00
|
|
|
</details>
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary><b>Adding a new worksheet to a workbook</b> (click to show)</summary>
|
|
|
|
|
|
|
|
This example uses [`XLSX.utils.aoa_to_sheet`](#array-of-arrays-input) to make a
|
|
|
|
worksheet and appends the new worksheet to the workbook:
|
|
|
|
|
|
|
|
```js
|
|
|
|
var new_ws_name = "SheetJS";
|
|
|
|
|
|
|
|
/* make worksheet */
|
|
|
|
var ws_data = [
|
|
|
|
[ "S", "h", "e", "e", "t", "J", "S" ],
|
|
|
|
[ 1 , 2 , 3 , 4 , 5 ]
|
|
|
|
];
|
|
|
|
var ws = XLSX.utils.aoa_to_sheet(ws_data);
|
|
|
|
|
|
|
|
/* Add the sheet name to the list */
|
|
|
|
wb.SheetNames.push(ws_name);
|
|
|
|
|
|
|
|
/* Load the worksheet object */
|
|
|
|
wb.Sheets[ws_name] = ws;
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
|
|
|
|
2017-07-05 22:27:54 +00:00
|
|
|
### Parsing and Writing Examples
|
|
|
|
|
|
|
|
- <http://sheetjs.com/demos/modify.html> read + modify + write files
|
2014-05-28 18:31:33 +00:00
|
|
|
|
2015-04-02 20:32:22 +00:00
|
|
|
- <https://github.com/SheetJS/js-xlsx/blob/master/bin/xlsx.njs> node
|
2014-05-28 18:31:33 +00:00
|
|
|
|
2015-04-02 20:32:22 +00:00
|
|
|
The node version installs a command line tool `xlsx` which can read spreadsheet
|
2014-05-28 18:31:33 +00:00
|
|
|
files and output the contents in various formats. The source is available at
|
|
|
|
`xlsx.njs` in the bin directory.
|
2014-02-12 06:09:42 +00:00
|
|
|
|
2014-01-27 09:38:50 +00:00
|
|
|
Some helper functions in `XLSX.utils` generate different views of the sheets:
|
|
|
|
|
2014-02-04 00:00:44 +00:00
|
|
|
- `XLSX.utils.sheet_to_csv` generates CSV
|
2017-05-16 17:45:35 +00:00
|
|
|
- `XLSX.utils.sheet_to_html` generates HTML
|
2014-05-28 18:31:33 +00:00
|
|
|
- `XLSX.utils.sheet_to_json` generates an array of objects
|
2014-07-28 13:22:32 +00:00
|
|
|
- `XLSX.utils.sheet_to_formulae` generates a list of formulae
|
2014-01-27 09:38:50 +00:00
|
|
|
|
2014-05-28 18:31:33 +00:00
|
|
|
## Writing Workbooks
|
|
|
|
|
2014-10-26 05:26:18 +00:00
|
|
|
For writing, the first step is to generate output data. The helper functions
|
|
|
|
`write` and `writeFile` will produce the data in various formats suitable for
|
|
|
|
dissemination. The second step is to actual share the data with the end point.
|
|
|
|
Assuming `workbook` is a workbook object:
|
2014-05-28 18:31:33 +00:00
|
|
|
|
2017-04-30 20:37:53 +00:00
|
|
|
<details>
|
|
|
|
<summary><b>nodejs write a file</b> (click to show)</summary>
|
2014-05-28 18:31:33 +00:00
|
|
|
|
2016-12-31 08:20:45 +00:00
|
|
|
```js
|
2014-05-28 18:31:33 +00:00
|
|
|
/* output format determined by filename */
|
|
|
|
XLSX.writeFile(workbook, 'out.xlsx');
|
2014-10-26 05:26:18 +00:00
|
|
|
/* at this point, out.xlsx is a file that you can distribute */
|
2014-05-28 18:31:33 +00:00
|
|
|
```
|
|
|
|
|
2017-04-30 20:37:53 +00:00
|
|
|
</details>
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary><b>Browser download file</b> (click to show)</summary>
|
|
|
|
|
|
|
|
Note: browser generates binary blob and forces a "download" to client. This
|
|
|
|
example uses [FileSaver.js](https://github.com/eligrey/FileSaver.js/):
|
2014-05-28 18:31:33 +00:00
|
|
|
|
2016-12-31 08:20:45 +00:00
|
|
|
```js
|
2017-05-16 17:45:35 +00:00
|
|
|
/* bookType can be any supported output type */
|
2014-07-28 13:22:32 +00:00
|
|
|
var wopts = { bookType:'xlsx', bookSST:false, type:'binary' };
|
2014-05-28 18:31:33 +00:00
|
|
|
|
|
|
|
var wbout = XLSX.write(workbook,wopts);
|
|
|
|
|
|
|
|
function s2ab(s) {
|
|
|
|
var buf = new ArrayBuffer(s.length);
|
|
|
|
var view = new Uint8Array(buf);
|
|
|
|
for (var i=0; i!=s.length; ++i) view[i] = s.charCodeAt(i) & 0xFF;
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2014-10-26 05:26:18 +00:00
|
|
|
/* the saveAs call downloads a file on the local machine */
|
2017-02-03 20:50:45 +00:00
|
|
|
saveAs(new Blob([s2ab(wbout)],{type:"application/octet-stream"}), "test.xlsx");
|
2014-05-28 18:31:33 +00:00
|
|
|
```
|
2017-04-30 20:37:53 +00:00
|
|
|
</details>
|
2014-05-28 18:31:33 +00:00
|
|
|
|
2017-09-05 05:26:50 +00:00
|
|
|
<details>
|
|
|
|
<summary><b>Browser upload to server</b> (click to show)</summary>
|
|
|
|
|
|
|
|
A complete example using XHR is [included in the xhr demo](demos/xhr/), along
|
|
|
|
with examples for fetch and wrapper libraries. This example assumes the server
|
|
|
|
can handle Base64-encoded files (see the demo for a basic nodejs server):
|
|
|
|
|
|
|
|
```js
|
|
|
|
/* in this example, send a base64 string to the server */
|
|
|
|
var wopts = { bookType:'xlsx', bookSST:false, type:'base64' };
|
|
|
|
|
|
|
|
var wbout = XLSX.write(workbook,wopts);
|
|
|
|
|
|
|
|
var oReq = new XMLHttpRequest();
|
|
|
|
oReq.open("POST", "/upload", true);
|
|
|
|
var formdata = new FormData();
|
|
|
|
formdata.append('file', 'test.xlsx'); // <-- server expects `file` to hold name
|
|
|
|
formdata.append('data', wbout); // <-- `data` holds the base64-encoded data
|
|
|
|
oReq.send(formdata);
|
|
|
|
```
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
2017-07-05 22:27:54 +00:00
|
|
|
### Writing Examples
|
2014-02-07 10:53:40 +00:00
|
|
|
|
2014-07-28 13:22:32 +00:00
|
|
|
- <http://sheetjs.com/demos/table.html> exporting an HTML table
|
2017-04-30 20:37:53 +00:00
|
|
|
- <http://sheetjs.com/demos/writexlsx.html> generates a simple file
|
2014-02-07 10:53:40 +00:00
|
|
|
|
2017-04-16 04:32:13 +00:00
|
|
|
### Streaming Write
|
|
|
|
|
2017-04-16 07:31:21 +00:00
|
|
|
The streaming write functions are available in the `XLSX.stream` object. They
|
2017-06-10 01:47:42 +00:00
|
|
|
take the same arguments as the normal write functions but return a Readable
|
|
|
|
Stream. They are only exposed in NodeJS.
|
2017-04-16 04:32:13 +00:00
|
|
|
|
2017-04-16 07:31:21 +00:00
|
|
|
- `XLSX.stream.to_csv` is the streaming version of `XLSX.utils.sheet_to_csv`.
|
2017-05-16 17:45:35 +00:00
|
|
|
- `XLSX.stream.to_html` is the streaming version of `XLSX.utils.sheet_to_html`.
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary><b>nodejs convert to CSV and write file</b> (click to show)</summary>
|
|
|
|
|
|
|
|
```js
|
|
|
|
var output_file_name = "out.csv";
|
|
|
|
var stream = XLSX.stream.to_csv(worksheet);
|
|
|
|
stream.pipe(fs.createWriteStream(output_file_name));
|
|
|
|
```
|
|
|
|
|
|
|
|
</details>
|
2017-04-16 07:31:21 +00:00
|
|
|
|
|
|
|
<https://github.com/sheetjs/sheetaki> pipes write streams to nodejs response.
|
2017-04-30 20:37:53 +00:00
|
|
|
|
2014-05-16 00:33:34 +00:00
|
|
|
## Interface
|
|
|
|
|
2015-04-02 20:32:22 +00:00
|
|
|
`XLSX` is the exposed variable in the browser and the exported node variable
|
2014-05-16 00:33:34 +00:00
|
|
|
|
2014-07-28 13:22:32 +00:00
|
|
|
`XLSX.version` is the version of the library (added by the build script).
|
|
|
|
|
|
|
|
`XLSX.SSF` is an embedded version of the [format library](http://git.io/ssf).
|
|
|
|
|
|
|
|
### Parsing functions
|
2014-05-16 00:33:34 +00:00
|
|
|
|
|
|
|
`XLSX.read(data, read_opts)` attempts to parse `data`.
|
|
|
|
|
|
|
|
`XLSX.readFile(filename, read_opts)` attempts to read `filename` and parse.
|
|
|
|
|
2017-03-10 23:39:17 +00:00
|
|
|
Parse options are described in the [Parsing Options](#parsing-options) section.
|
|
|
|
|
2014-07-28 13:22:32 +00:00
|
|
|
### Writing functions
|
|
|
|
|
2014-05-16 00:33:34 +00:00
|
|
|
`XLSX.write(wb, write_opts)` attempts to write the workbook `wb`
|
|
|
|
|
|
|
|
`XLSX.writeFile(wb, filename, write_opts)` attempts to write `wb` to `filename`
|
|
|
|
|
2017-03-25 01:36:40 +00:00
|
|
|
`XLSX.writeFileAsync(filename, wb, o, cb)` attempts to write `wb` to `filename`.
|
|
|
|
If `o` is omitted, the writer will use the third argument as the callback.
|
|
|
|
|
2017-04-16 07:31:21 +00:00
|
|
|
`XLSX.stream` contains a set of streaming write functions.
|
|
|
|