-
Notifications
You must be signed in to change notification settings - Fork 55
/
SimpleSheet.java
342 lines (324 loc) · 11.6 KB
/
SimpleSheet.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
/*
* Copyright (c) 2017-2024, guanquan.wang@hotmail.com All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.ttzero.excel.entity;
import org.ttzero.excel.entity.style.Horizontals;
import org.ttzero.excel.entity.style.NumFmt;
import org.ttzero.excel.entity.style.Styles;
import org.ttzero.excel.reader.Cell;
import java.lang.reflect.Array;
import java.util.Arrays;
import java.util.List;
/**
* 简单工作表,它的简单之处在于只需要指定单元格的值即可输出,不需要再定义对象也不受@ExcelColumn注解影响
* 例如{@code Arrays.asList(1, 2, 3)}则会将数字{@code 1,2,3}输出到第一行的{@code A,B,C}三列。
*
* <p>简单工作表支持传入{@code List}或{@code Array},但两种类型不能掺杂使用,要么全是{@code List}
* 要么全是{@code Array},导出过程中并不会逐一判断泛型的实际类型,所以需要在外部做好约束。由于没有表头做为限制所以每一行的数组长度
* 并不要求一致数据类型也不要求一致但最长不能超过Excel限制的长度,除日期类型外每个单元格均保持"常规"格式,日期类型默认添加格式化。
* {@code SimpleSheet}继承于{@code ListSheet}如果传入数据为普通数组对象则将使用{@code ListSheet}进行处理。</p>
*
* <p>默认情况下简单工作表将不会设置样式(包括表头样式),{@code SimpleSheet}提供简化的{@link #setHeader(List)}方法来指定表头,
* 也可以使用{@link #firstRowAsHeader}方法将第一行数据做为表头,当指定表头时依然会保持通用样式。</p>
*
* <pre>
* new Workbook()
* .addSheet(new SimpleSheet<>()
* // 导出两行数据
* .setData(Arrays.asList(new String[]{"a","b","c"}, new int[]{1,2,3,4,5}))
* ).writeTo(Paths.get("f://abc.xlsx"));</pre>
* @author guanquan.wang
* @since 2024-09-24
* @see ListSheet
*/
public class SimpleSheet<T> extends ListSheet<T> {
/**
* 0: empty 1: List 2: Array 3: Super(not a type)
*/
protected int type = -1;
/**
* 将第一行数据作为表头
*/
protected boolean firstRowAsHeader;
/**
* 未实例化的列,可用于在写超出预知范围外的列
*/
protected static final Column UNALLOCATED_COLUMN = new Column();
/**
* 实例化工作表,未指定工作表名称时默认以{@code 'Sheet'+id}命名
*/
public SimpleSheet() { }
/**
* 实例化工作表并指定工作表名称
*
* @param name 工作表名称
*/
public SimpleSheet(String name) {
super(name);
}
/**
* 实例化工作表并指定表头信息
*
* @param columns 表头信息
*/
public SimpleSheet(Column... columns) {
super(columns);
}
/**
* 实例化工作表并指定工作表名称和表头信息
*
* @param name 工作表名称
* @param columns 表头信息
*/
public SimpleSheet(String name, Column... columns) {
super(name, columns);
}
/**
* 实例化工作表并指定工作表名称,水印和表头信息
*
* @param name 工作表名称
* @param waterMark 水印
* @param columns 表头信息
*/
public SimpleSheet(String name, WaterMark waterMark, Column... columns) {
super(name, waterMark, columns);
}
/**
* 实例化工作表并指定初始数据
*
* @param data 初始数据
*/
public SimpleSheet(List<T> data) {
super(data);
}
/**
* 实例化工作表并指定工作表名称和初始数据
*
* @param name 工作表名称
* @param data 初始数据
*/
public SimpleSheet(String name, List<T> data) {
super(name, data);
}
/**
* 实例化工作表并指定初始数据和表头
*
* @param data 初始数据
* @param columns 表头信息
*/
public SimpleSheet(List<T> data, Column... columns) {
super(data, columns);
}
/**
* 实例化工作表并指定工作表名称、初始数据和表头
*
* @param name 工作表名称
* @param data 初始数据
* @param columns 表头信息
*/
public SimpleSheet(String name, List<T> data, Column... columns) {
super(name, data, columns);
}
/**
* 实例化工作表并指定初始数据、水印和表头
*
* @param data 初始数据
* @param waterMark 水印
* @param columns 表头信息
*/
public SimpleSheet(List<T> data, WaterMark waterMark, Column... columns) {
super(data, waterMark, columns);
}
/**
* 实例化工作表并指定工作表名称、初始数据、水印和表头
*
* @param name 工作表名称
* @param data 初始数据
* @param waterMark 水印
* @param columns 表头信息
*/
public SimpleSheet(String name, List<T> data, WaterMark waterMark, Column... columns) {
super(name, data, waterMark, columns);
}
/**
* 设置表头信息,与Columns不同的是本方法只设置表头值并不带任何其它属性,可以看为{@link #setColumns(List)}的简化方法
*
* @param header 表头信息列表
* @return 当前对象,支持链式调用
*/
public SimpleSheet<T> setHeader(List<String> header) {
Column[] columns;
if (header == null || header.isEmpty()) columns = new Column[0];
else {
columns = new Column[header.size()];
for (int i = 0, len = header.size(); i < len; columns[i] = new Column(header.get(i++)).setCellStyle(0));
}
super.setColumns(columns);
return this;
}
/**
* 设置表头信息,与Columns不同的是本方法只设置表头值并不带任何其它属性,可以看为{@link #setColumns(Column...)}的简化方法
*
* @param header 表头信息列表
* @return 当前对象,支持链式调用
*/
public SimpleSheet<T> setHeader(String ... header) {
return setHeader(Arrays.asList(header));
}
/**
* 将第一行数据作为表头
*
* @return SimpleSheet对象,包含了表头信息
*/
public SimpleSheet<T> firstRowAsHeader() {
firstRowAsHeader = true;
return this;
}
/**
* 获取表头信息,未实例化表头时会执行初始化方法实例化表头
*
* <p>对于简单类型来说表头信息并无任何有效信息,</p>
*
* @return 表头信息
*/
@Override
public Column[] getHeaderColumns() {
Object o = getFirst();
if (o == null) type = 0;
// List
else if (List.class.isAssignableFrom(o.getClass())) {
type = 1;
// 将第一行做为头表
if (firstRowAsHeader) {
List row0 = (List) o;
columns = new Column[row0.size()];
int i = 0;
for (Object e : row0) columns[i++] = new Column(e.toString()).setCellStyle(0);
// 这里取了第一行所以将start向前移动
start++;
}
}
// 数组
else if (o.getClass().isArray()) {
type = 2;
// 将第一行做为头表
if (firstRowAsHeader) {
int len = Array.getLength(o);
columns = new Column[len];
for (int i = 0; i < len; i++) columns[i] = new Column(Array.get(o, i).toString()).setCellStyle(0);
// 这里取了第一行所以将start向前移动
start++;
}
// 普通ListSheet
} else {
type = 3;
return super.getHeaderColumns();
}
// 特殊设置
if (columns == null) {
columns = new Column[0];
headerReady = true;
// 默认忽略表头
ignoreHeader();
setHeaderRowHeight(-1D);
}
UNALLOCATED_COLUMN.styles = workbook.getStyles();
UNALLOCATED_COLUMN.cellStyle = 0; // General Style
return columns;
}
/**
* 重置{@code RowBlock}行块数据
*/
@Override
protected void resetBlockData() {
// 普通ListSheet
if (type == 3) {
super.resetBlockData();
return;
}
if (!eof && left() < rowBlock.capacity()) append();
// Find the end index of row-block
int end = getEndIndex();
for (; start < end; rows++, start++) {
Row row = rowBlock.next();
row.index = rows;
T o = data.get(start);
boolean isNull = o == null;
List sub = !isNull && type == 1 ? (List) o : null;
int len = !isNull ? type == 1 ? sub.size() : Array.getLength(o) : 0;
Cell[] cells = row.realloc(len);
for (int i = 0; i < len; i++) {
// Clear cells
Cell cell = cells[i];
cell.clear();
Object e = null;
Column column = i < columns.length ? columns[i] : UNALLOCATED_COLUMN;
// 根据下标取数
if (!column.isIgnoreValue()) {
if (type == 1) e = sub.get(i);
else e = Array.get(o, i);
}
column.clazz = null; // 无法确定纵向类型完全一致所以这里将缓存的类型清除
cellValueAndStyle.reset(row, cell, e, column);
// 日期类型添加默认format
if (cell.t == Cell.DATETIME || cell.t == Cell.DATE || cell.t == Cell.TIME) {
datetimeCell(cell);
}
}
row.height = getRowHeight();
}
}
/**
* 日期类型添加默认format
*
* @param cell 单元格
*/
protected void datetimeCell(Cell cell) {
Styles styles = workbook.getStyles();
int style = styles.getStyleByIndex(cell.xf);
// 如果已有格式化则保留
if (Styles.hasNumFmt(style)) return;
switch (cell.t) {
case Cell.DATETIME: style = styles.modifyNumFmt(style, NumFmt.DATETIME_FORMAT); break;
case Cell.DATE : style = styles.modifyNumFmt(style, NumFmt.DATE_FORMAT); break;
case Cell.TIME : style = styles.modifyNumFmt(style, NumFmt.TIME_FORMAT); break;
}
if (!Styles.hasHorizontal(style)) style |= Horizontals.CENTER;
cell.xf = styles.of(style);
}
/**
* 获取下一段{@link RowBlock}行块数据,工作表输出协议通过此方法循环获取行数据并落盘,
* 行块被设计为一个滑行窗口,下游输出协议只能获取一个窗口的数据默认包含32行。
*
* @return 行块
*/
@Override
public RowBlock nextBlock() {
// clear first
rowBlock.clear();
// As default as force export
resetBlockData();
return rowBlock.flip();
}
/**
* 获取默认列宽,如果未在Column上特殊指定宽度时该宽度将应用于每一列
*
* @return 默认列宽10
*/
@Override
public double getDefaultWidth() {
return type <= 2 ? 10.16D : super.getDefaultWidth();
}
}