You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/com/alibaba/excel/ExcelWriter.java
+7-8Lines changed: 7 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@
18
18
* This object can perform the following two functions.
19
19
* <pre>
20
20
* 1. Create a new empty Excel workbook, write the data to the stream after the data is filled.
21
-
* 2. Edit existing Excel, write the original Excel file, or write it to other places.{@link ExcelWriter(InputStream , OutputStream , ExcelTypeEnum , boolean )}
21
+
* 2. Edit existing Excel, write the original Excel file, or write it to other places.}
22
22
* </pre>
23
23
* @author jipengfei
24
24
*/
@@ -40,7 +40,6 @@ public ExcelWriter(OutputStream outputStream, ExcelTypeEnum typeEnum) {
40
40
41
41
/**
42
42
* @param generateParam
43
-
* @since easyexcel 0.0.1 Use {@link new ExcelWrite(int, int, int)
44
43
*/
45
44
@Deprecated
46
45
publicExcelWriter(GenerateParamgenerateParam) {
@@ -83,7 +82,7 @@ public ExcelWriter(InputStream templateInputStream, OutputStream outputStream, E
83
82
}
84
83
85
84
/**
86
-
* Write data(List<? extends BaseRowModel>) to a sheet
85
+
* Write data to a sheet
87
86
* @param data Data to be written
88
87
* @param sheet Write to this sheet
89
88
* @return this current writer
@@ -111,7 +110,7 @@ public ExcelWriter write(List data) {
0 commit comments