Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions website/docs/read/sheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ public void readAllSheet() {

You can read a specific Sheet from an Excel file, supporting specification by Sheet index or name.

> **Note:** Sheet names are limited to 31 characters in Excel. When reading sheets by name, use the actual sheet name that appears in the Excel file.

### Code Example

```java
Expand Down
2 changes: 2 additions & 0 deletions website/docs/write/sheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ title: 'Sheet'

This chapter introduces how to configure Sheets to write data.

> **Note:** Excel limits sheet names to 31 characters. Longer names are automatically trimmed with a warning logged.

## Writing to the Same Sheet

### Overview
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ public void readAllSheet() {

可以读取 Excel 文件具体的某个 Sheet,支持指定 Sheet 的索引或名称

> **注意:** Excel 中 Sheet 名称最多为 31 个字符。按名称读取时,请使用文件中实际显示的 Sheet 名称。

### 代码示例

```java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ title: 'Sheet 页'

本章节将介绍设置 Sheet 来写入数据的使用。

> **注意:** Excel 中 Sheet 名称最多为 31 个字符。超过此长度的名称将被自动截断,并记录警告日志。

## 写入同一个 Sheet

### 概述
Expand Down