Skip to content

Commit 90789d3

Browse files
committed
chore: 文档问题修复
1 parent 1717c02 commit 90789d3

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

pages/en-US/docs/write/write_hard.mdx

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The complex writing feature supports various Excel data export requirements by s
1212
Dynamically select columns to export by setting a collection of column names, supporting ignoring columns or exporting only specific columns.
1313

1414
### excel 示例
15-
![img](/images/docs/write_hard/excludeOrIncludeWrite.jpg)
15+
![img](/images/docs/write_hard/excludeOrIncludeWrite.png)
1616

1717
#### Code Example
1818
```java
@@ -44,7 +44,7 @@ public void excludeOrIncludeWrite() {
4444
Specify the column order using the `@ExcelProperty` annotation's `index` attribute.
4545

4646
### excel 示例
47-
![img](/images/docs/write_hard/indexWrite.jpg)
47+
![img](/images/docs/write_hard/indexWrite.png)
4848

4949
#### Sample Object
5050
```java
@@ -79,7 +79,7 @@ public void indexWrite() {
7979
Supports setting multi-level headers by specifying main titles and sub-titles using the `@ExcelProperty` annotation.
8080

8181
### excel 示例
82-
![img](/images/docs/write_hard/complexHeadWrite.jpg)
82+
![img](/images/docs/write_hard/complexHeadWrite.png)
8383

8484
#### Sample Object
8585
```java
@@ -115,7 +115,7 @@ public void complexHeadWrite() {
115115
Write data to the same sheet or multiple sheets in batches to achieve pagination writing for large amounts of data.
116116

117117
### excel 示例
118-
![img](/images/docs/write_hard/repeatedWrite.jpg)
118+
![img](/images/docs/write_hard/repeatedWrite.png)
119119

120120
#### Code Example
121121
```java
@@ -149,7 +149,7 @@ public void repeatedWrite() {
149149
Supports date, number, or other custom formats through annotations.
150150

151151
### excel 示例
152-
![img](/images/docs/write_hard/converterWrite.jpg)
152+
![img](/images/docs/write_hard/converterWrite.png)
153153

154154
#### Sample Object
155155
```java
@@ -191,7 +191,7 @@ public void converterWrite() {
191191
Set cell styles in the entity class using annotations, including font, background color, row height, etc.
192192

193193
### excel 示例
194-
![img](/images/docs/write_hard/annotationStyleWrite.jpg)
194+
![img](/images/docs/write_hard/annotationStyleWrite.png)
195195

196196
#### Sample Object
197197
```java
@@ -243,7 +243,7 @@ public void annotationStyleWrite() {
243243
Dynamically set styles by implementing the `WriteHandler` interceptor interface, suitable for complex style logic.
244244

245245
### excel 示例
246-
![img](/images/docs/write_hard/handlerStyleWrite.jpg)
246+
![img](/images/docs/write_hard/handlerStyleWrite.png)
247247

248248
#### Example 1: Using Existing Strategy
249249
Set styles for headers and content separately using `HorizontalCellStyleStrategy`.
@@ -378,7 +378,7 @@ public void poiStyleWrite() {
378378
Supports exporting images using files, streams, byte arrays, URLs, and other methods.
379379

380380
### excel 示例
381-
![img](/images/docs/write_hard/imageWrite.jpg)
381+
![img](/images/docs/write_hard/imgWrite.png)
382382

383383
#### Sample Object
384384
```java
@@ -425,7 +425,7 @@ public void imageWrite() throws Exception {
425425
Supports cell hyperlinks, adding comments, and setting formula content.
426426

427427
### excel 示例
428-
![img](/images/docs/write_hard/writeCellDataWrite.jpg)
428+
![img](/images/docs/write_hard/writeCellDataWrite.png)
429429

430430
#### Sample Object
431431
```java
@@ -469,7 +469,7 @@ public void writeCellDataWrite() {
469469
Generate table headers dynamically for dynamic data or internationalization scenarios.
470470

471471
### excel 示例
472-
![img](/images/docs/write_hard/dynamicHeadWrite.jpg)
472+
![img](/images/docs/write_hard/dynamicHeadWrite.png)
473473

474474
#### Code Example
475475
```java
@@ -496,7 +496,7 @@ public void dynamicHeadWrite() {
496496
Add comments to specific cells using interceptors, suitable for marking explanations or special tips.
497497

498498
### excel 示例
499-
![img](/images/docs/write_hard/commentWrite.jpg)
499+
![img](/images/docs/write_hard/commentWrite.png)
500500

501501
### Custom Comment Interceptor
502502
```java
@@ -540,7 +540,7 @@ public void commentWrite() {
540540
Supports filling data on an existing template file, suitable for standardized output.
541541

542542
### excel 示例
543-
![img](/images/docs/write_hard/commentWrite.jpg)
543+
![img](/images/docs/write_hard/commentWrite.png)
544544

545545
### Sample Code
546546
```java
@@ -564,7 +564,7 @@ public void templateWrite() {
564564
Control column width and row height through annotations, suitable for scenarios with specific table format requirements.
565565

566566
### excel 示例
567-
![img](/images/docs/write_hard/widthAndHeightWrite.jpg)
567+
![img](/images/docs/write_hard/widthAndHeightWrite.png)
568568

569569
### Sample Object
570570
```java
@@ -607,7 +607,7 @@ public void widthAndHeightWrite() {
607607
Supports merging cells using annotations or custom merge strategies.
608608

609609
### excel 示例
610-
![img](/images/docs/write_hard/mergeWrite.jpg)
610+
![img](/images/docs/write_hard/mergeWrite.png)
611611

612612
### Method 1: Annotation Form
613613
```java
@@ -665,7 +665,7 @@ public void mergeWrite() {
665665
Supports writing multiple tables in one sheet.
666666

667667
### excel 示例
668-
![img](/images/docs/write_hard/tableWrite.jpg)
668+
![img](/images/docs/write_hard/tableWrite.png)
669669

670670
### Sample Code
671671
```java
@@ -692,7 +692,7 @@ public void tableWrite() {
692692
Generate dynamic table headers for scenarios where the header content changes dynamically.
693693

694694
### excel 示例
695-
![img](/images/docs/write_hard/dynamicHeadWrite.jpg)
695+
![img](/images/docs/write_hard/dynamicHeadWrite.png)
696696

697697
### Sample Code
698698
```java
@@ -720,7 +720,7 @@ public void dynamicHeadWrite() {
720720
Custom logic implementation (such as adding dropdowns, setting hyperlinks) requires operation through interceptors.
721721

722722
### excel 示例
723-
![img](/images/docs/write_hard/customHandlerWrite.jpg)
723+
![img](/images/docs/write_hard/customHandlerWrite.png)
724724

725725
### Example 1: Setting Dropdowns
726726
```java

0 commit comments

Comments
 (0)