docs.sheetjs.com/docz/docs/08-api/05-write-options.md

281 lines
12 KiB
Markdown
Raw Permalink Normal View History

2022-05-16 03:26:04 +00:00
---
2023-05-18 09:21:08 +00:00
sidebar_position: 5
2022-05-16 03:26:04 +00:00
hide_table_of_contents: true
title: Writing Files
---
2022-05-17 03:19:39 +00:00
import current from '/version.js';
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
2023-05-07 13:58:36 +00:00
import CodeBlock from '@theme/CodeBlock';
2022-05-17 03:19:39 +00:00
2023-04-11 08:25:50 +00:00
**`XLSX.write(wb, options)`**
`write` attempts to write the workbook `wb` and return the file.
The `options` argument is required. It must specify
- [`bookType`](#supported-output-formats) (file format of the exported file)
- [`type`](#output-type) (return value type)
**`XLSX.writeFile(wb, filename, options)`**
`writeFile` attempts to write `wb` to a local file with specified `filename`.
2022-05-16 03:26:04 +00:00
In browser-based environments, it will attempt to force a client-side download.
2023-04-19 20:03:23 +00:00
It also supports NodeJS, ExtendScript applications, and Chromium extensions.
2023-04-11 08:25:50 +00:00
If `options` is omitted or if `bookType` is missing from the `options` object,
the output file format will be deduced from the filename extension.
2023-06-13 17:49:52 +00:00
**`XLSX.writeXLSX(wb, options)`**
**`XLSX.writeFileXLSX(wb, filename, options)`**
`writeXLSX` and `writeFileXLSX` are limited versions of `write` and `writeFile`.
They support writing to the XLSX file format.
For websites that exclusively export to XLSX, these functions can reduce the
size of the production site. The general `write` and `writeFile` functions are
more appropriate when exporting to XLS or XLSB or other formats.
<details>
<summary><b>NodeJS-specific methods</b> (click to show)</summary>
2023-04-11 08:25:50 +00:00
**`XLSX.writeFileAsync(filename, wb, cb)`**
**`XLSX.writeFileAsync(filename, wb, options, cb)`**
attempt to write `wb` to `filename` and invoke the callback `cb` on completion.
When an `options` object is specified, it is expected to be the third argument.
This method only works in NodeJS and uses `fs.writeFile` under the hood.
</details>
:::note Recommendation
`writeFile` wraps a number of export techniques, making it suitable for browser
2023-04-19 20:03:23 +00:00
downloads, NodeJS, ExtendScript apps, and Chromium extensions. It does not work
2023-04-11 08:25:50 +00:00
in other environments with more advanced export methods.
The `write` method returns raw bytes or strings that can be exported in
[Desktop apps](/docs/demos/desktop/) , [Mobile apps](/docs/demos/mobile) , and
[Servers](/docs/demos/net/server).
The [demos](/docs/demos) preferentially use `writeFile`. When `writeFile` is not
supported, the demos show file creation using `write` and platform APIs.
:::
2022-05-16 03:26:04 +00:00
2023-04-11 08:25:50 +00:00
## Writing Options
2022-05-16 03:26:04 +00:00
The write functions accept an options argument:
2022-09-09 23:44:12 +00:00
| Option Name | Default | Description |
| :---------- | -------: | :------------------------------------------------- |
|`type` | | Output data encoding (see Output Type below) |
|`cellDates` | `false` | Store dates as type `d` (default is `n`) |
2023-06-25 09:36:58 +00:00
|`cellStyles` | `false` | Save style/theme info to the `.s` field |
2022-09-09 23:44:12 +00:00
|`codepage` | | If specified, use code page when appropriate ** |
|`bookSST` | `false` | Generate Shared String Table ** |
|`bookType` | `"xlsx"` | Type of Workbook (see below for supported formats) |
2023-06-25 09:36:58 +00:00
|`bookVBA` | | Add VBA blob from workbook object to the file ** |
|`WTF` | `false` | If true, throw errors on unexpected features ** |
2022-09-09 23:44:12 +00:00
|`sheet` | `""` | Name of Worksheet for single-sheet formats ** |
|`compression`| `false` | Use ZIP compression for ZIP-based formats ** |
|`Props` | | Override workbook properties when writing ** |
|`themeXLSX` | | Override theme XML when writing XLSX/XLSB/XLSM ** |
|`ignoreEC` | `true` | Suppress "number as text" errors ** |
|`numbers` | | Payload for NUMBERS export ** |
2023-06-23 20:24:44 +00:00
|`FS` | `","` | "Field Separator" delimiter between fields ** |
|`RS` | `"\n"` | "Record Separator" delimiter between rows ** |
2022-05-16 03:26:04 +00:00
- `bookSST` is slower and more memory intensive, but has better compatibility
with older versions of iOS Numbers
2022-09-09 23:44:12 +00:00
- The raw data is the only thing guaranteed to be saved. Features not described
2022-05-16 03:26:04 +00:00
in this README may not be serialized.
- `cellDates` only applies to XLSX output and is not guaranteed to work with
third-party readers. Excel itself does not usually write cells with type `d`
so non-Excel tools may ignore the data or error in the presence of dates.
2022-09-09 23:44:12 +00:00
- `codepage` is applied to legacy formats including DBF. Characters missing
from the encoding will be replaced with underscore characters (`_`).
- `Props` is an object mirroring the workbook `Props` field. See the table from
2022-10-30 05:45:37 +00:00
the [Workbook File Properties](/docs/csf/book#file-properties) section.
2022-05-16 03:26:04 +00:00
- if specified, the string from `themeXLSX` will be saved as the primary theme
for XLSX/XLSB/XLSM files (to `xl/theme/theme1.xml` in the ZIP)
- Due to a bug in the program, some features like "Text to Columns" will crash
Excel on worksheets where error conditions are ignored. The writer will mark
files to ignore the error by default. Set `ignoreEC` to `false` to suppress.
2023-06-23 20:24:44 +00:00
- `FS` and `RS` apply to CSV and Text output formats. The options are discussed
in ["CSV and Text"](/docs/api/utilities/csv#delimiter-separated-output)
2023-06-25 09:36:58 +00:00
- `bookVBA` only applies to supported formats. ["VBA"](/docs/csf/features/vba)
section explains the feature in more detail.
- `WTF` is mainly for development.
2022-05-17 03:19:39 +00:00
<details open>
<summary><b>Exporting NUMBERS files</b> (click to show)</summary>
The NUMBERS writer requires a fairly large base. The supplementary `xlsx.zahl`
scripts provide support. `xlsx.zahl.js` is designed for standalone and NodeJS
use, while `xlsx.zahl.mjs` is suitable for ESM.
Adding NUMBERS export support involves two steps:
1) Load the `xlsx.zahl` script
2) Pass the payload into the `numbers` option to `write` or `writeFile`.
<Tabs>
<TabItem value="browser" label="Browser">
<p><a href={"https://cdn.sheetjs.com/xlsx-" + current + "/package/dist/xlsx.zahl.js"}>{"https://cdn.sheetjs.com/xlsx-" + current + "/package/dist/xlsx.zahl.js"}</a> is the URL for {current}</p>
2022-05-17 03:19:39 +00:00
2023-05-07 13:58:36 +00:00
<CodeBlock language="html">{`\
2022-05-17 03:19:39 +00:00
<meta charset="utf8">\n\
<body>\n\
<script src="https://cdn.sheetjs.com/xlsx-${current}/package/dist/xlsx.full.min.js"></script>\n\
<script src="https://cdn.sheetjs.com/xlsx-${current}/package/dist/xlsx.zahl.js"></script>\n\
<script>\n\
var wb = XLSX.utils.book_new(); var ws = XLSX.utils.aoa_to_sheet([\n\
["SheetJS", "<3","ிிள்"],\n\
[72,,"Arbeitsblätter"],\n\
[,62,"数据"],\n\
[true,false,],\n\
]); XLSX.utils.book_append_sheet(wb, ws, "Sheet1");\n\
XLSX.writeFile(wb, "textport.numbers", {numbers: XLSX_ZAHL_PAYLOAD, compression: true});\n\
</script>\n\
2024-03-22 04:45:40 +00:00
</body>`}
</CodeBlock>
2022-05-17 03:19:39 +00:00
</TabItem>
<TabItem value="nodejs" label="NodeJS">
After installing the package:
2023-05-07 13:58:36 +00:00
<CodeBlock language="bash">{`\
2022-08-07 07:48:40 +00:00
npm i --save https://cdn.sheetjs.com/xlsx-${current}/xlsx-${current}.tgz`}
2023-05-07 13:58:36 +00:00
</CodeBlock>
2022-05-17 03:19:39 +00:00
The scripts will be available at `xlsx/dist/xlsx.zahl` (CommonJS) and
`xlsx/dist/xlsx.zahl.mjs` (ESM).
```js
var XLSX = require("xlsx");
var XLSX_ZAHL_PAYLOAD = require("xlsx/dist/xlsx.zahl");
var wb = XLSX.utils.book_new(); var ws = XLSX.utils.aoa_to_sheet([
["SheetJS", "<3","ிிள்"],
[72,,"Arbeitsblätter"],
[,62,"数据"],
[true,false,],
]); XLSX.utils.book_append_sheet(wb, ws, "Sheet1");
XLSX.writeFile(wb, "textport.numbers", {numbers: XLSX_ZAHL_PAYLOAD, compression: true});
2022-07-23 09:06:31 +00:00
```
</TabItem>
<TabItem value="bun" label="Bun">
After installing the package:
2023-05-07 13:58:36 +00:00
<CodeBlock language="bash">{`\
2023-08-17 20:30:13 +00:00
bun i https://cdn.sheetjs.com/xlsx-${current}/xlsx-${current}.tgz`}
2023-05-07 13:58:36 +00:00
</CodeBlock>
2022-07-23 09:06:31 +00:00
The scripts will be available at `xlsx/dist/xlsx.zahl` (CommonJS) and
`xlsx/dist/xlsx.zahl.mjs` (ESM).
```js
import * as XLSX from "xlsx";
import XLSX_ZAHL_PAYLOAD from "xlsx/dist/xlsx.zahl";
2022-09-22 20:26:53 +00:00
import * as fs from "fs";
XLSX.set_fs(fs);
2022-07-23 09:06:31 +00:00
var wb = XLSX.utils.book_new(); var ws = XLSX.utils.aoa_to_sheet([
["SheetJS", "<3","ிிள்"],
[72,,"Arbeitsblätter"],
[,62,"数据"],
[true,false,],
]); XLSX.utils.book_append_sheet(wb, ws, "Sheet1");
XLSX.writeFile(wb, "textport.numbers", {numbers: XLSX_ZAHL_PAYLOAD, compression: true});
2022-05-17 03:19:39 +00:00
```
</TabItem>
<TabItem value="deno" label="Deno">
<p><a href={"https://cdn.sheetjs.com/xlsx-" + current + "/package/dist/xlsx.zahl.mjs"}>{"https://cdn.sheetjs.com/xlsx-" + current + "/package/dist/xlsx.zahl.mjs"}</a> is the URL for {current}</p>
2022-05-17 03:19:39 +00:00
2023-05-07 13:58:36 +00:00
<CodeBlock language="ts">{`\
2022-05-17 03:19:39 +00:00
import * as XLSX from 'https://cdn.sheetjs.com/xlsx-${current}/package/xlsx.mjs';\n\
import XLSX_ZAHL_PAYLOAD from 'https://cdn.sheetjs.com/xlsx-${current}/package/dist/xlsx.zahl.mjs';\n\
2023-05-07 13:58:36 +00:00
\n\
2022-05-17 03:19:39 +00:00
var wb = XLSX.utils.book_new(); var ws = XLSX.utils.aoa_to_sheet([\n\
["SheetJS", "<3","ிிள்"],\n\
[72,,"Arbeitsblätter"],\n\
[,62,"数据"],\n\
[true,false,],\n\
]); XLSX.utils.book_append_sheet(wb, ws, "Sheet1");\n\
XLSX.writeFile(wb, "textport.numbers", {numbers: XLSX_ZAHL_PAYLOAD, compression: true});\n\
2024-03-22 04:45:40 +00:00
`}
</CodeBlock>
2022-05-17 03:19:39 +00:00
</TabItem>
</Tabs>
</details>
2022-05-16 03:26:04 +00:00
## Supported Output Formats
For broad compatibility with third-party tools, this library supports many
output formats. The specific file type is controlled with `bookType` option:
2023-08-17 20:30:13 +00:00
| `bookType` | extension | sheets | Description |
|:-----------|:-----------|:-------|:--------------------------------|
| `xlsx` | `.xlsx` | multi | Excel 2007+ XML Format |
| `xlsm` | `.xlsm` | multi | Excel 2007+ Macro XML Format |
| `xlsb` | `.xlsb` | multi | Excel 2007+ Binary Format |
| `biff8` | `.xls` | multi | Excel 97-2004 Workbook Format |
| `biff5` | `.xls` | multi | Excel 5.0/95 Workbook Format |
| `biff4` | `.xls` | single | Excel 4.0 Worksheet Format |
| `biff3` | `.xls` | single | Excel 3.0 Worksheet Format |
| `biff2` | `.xls` | single | Excel 2.0 Worksheet Format |
| `xlml` | `.xls` | multi | Excel 2003-2004 (SpreadsheetML) |
| `numbers` | `.numbers` | multi | Numbers 3.0+ Spreadsheet |
| `ods` | `.ods` | multi | OpenDocument Spreadsheet |
| `fods` | `.fods` | multi | Flat OpenDocument Spreadsheet |
| `wk3` | `.wk3` | multi | Lotus Workbook (WK3) |
| `csv` | `.csv` | single | Comma Separated Values |
| `txt` | `.txt` | single | UTF-16 Unicode Text (TXT) |
| `sylk` | `.sylk` | single | Symbolic Link (SYLK) |
| `html` | `.html` | single | HTML Document |
| `dif` | `.dif` | single | Data Interchange Format (DIF) |
| `dbf` | `.dbf` | single | dBASE II + VFP Extensions (DBF) |
| `wk1` | `.wk1` | single | Lotus Worksheet (WK1) |
| `rtf` | `.rtf` | single | Rich Text Format (RTF) |
| `prn` | `.prn` | single | Lotus Formatted Text |
| `eth` | `.eth` | single | Ethercalc Record Format (ETH) |
- `compression` applies to ZIP-based formats (XLSX, XLSM, XLSB, NUMBERS, ODS)
2022-05-16 03:26:04 +00:00
- Formats that only support a single sheet require a `sheet` option specifying
the worksheet. If the string is empty, the first worksheet is used.
- `writeFile` will automatically guess the output file format based on the file
extension if `bookType` is not specified. It will choose the first format in
the aforementioned table that matches the extension.
## Output Type
2023-04-11 08:25:50 +00:00
The `type` option specifies the JS form of the output:
2022-05-16 03:26:04 +00:00
| `type` | output |
|------------|-----------------------------------------------------------------|
| `"base64"` | string: Base64 encoding of the file |
| `"binary"` | string: binary string (byte `n` is `data.charCodeAt(n)`) |
2022-08-25 08:22:28 +00:00
| `"string"` | string: JS string (not compatible with binary formats) |
2022-05-16 03:26:04 +00:00
| `"buffer"` | nodejs Buffer |
| `"array"` | ArrayBuffer, fallback array of 8-bit unsigned int |
| `"file"` | string: path of file that will be created (nodejs only) |
- For compatibility with Excel, `csv` output will always include the UTF-8 byte
order mark.