1. 提供了@Excel注解
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
|
package
org.xdemo.superutil.thirdparty.excel;
import
java.lang.annotation.ElementType;
import
java.lang.annotation.Retention;
import
java.lang.annotation.RetentionPolicy;
import
java.lang.annotation.Target;
/**
* @author Goofy
* Excel注解,用以生成Excel表格文件
*/
@Retention
(RetentionPolicy.RUNTIME)
@Target
({ElementType.FIELD,ElementType.TYPE})
public
@interface
Excel {
//列名
String name()
default
""
;
//宽度
int
width()
default
20
;
//忽略该字段
boolean
skip()
default
false
;
}
|
使用方法如下:
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
|
public
class
User {
@Excel
(name =
"姓名"
, width =
30
)
private
String name;
@Excel
(name =
"年龄"
, width =
60
)
private
String age;
@Excel
(skip =
true
)
private
String password;
@Excel
(name =
"xx"
)
private
Double xx;
@Excel
(name =
"yy"
)
private
Date yy;
@Excel
(name =
"锁定"
)
private
Boolean locked;
@Excel
(name =
"金额"
)
private
BigDecimal db;
//省略get和set...
}
|
2. 对应注解,ExcelUtils提供了writeToFile(List
在导出Excel时候,可以设置如下:
1
2
3
4
5
|
ExcelDataFormatter edf =
new
ExcelDataFormatter();
Map
new
HashMap
map.put(
"true"
,
"真"
);
map.put(
"false"
,
"假"
);
edf.set(
"locked"
, map);
|
在导入Excel的时候,反过来设置即可,
1
2
3
4
5
|
ExcelDataFormatter edf =
new
ExcelDataFormatter();
Map
new
HashMap
map.put(
"真"
,
"true"
);
map.put(
"假"
,
"false"
);
edf.set(
"locked"
, map);
|
注意:代码中只针对Boolean和Integer类型做了相应的转换,其他的没有替换,另外,代码中的数据类型请使用封装类型,也不支持对象的嵌套,比如在User对象中的部门Department上加Excel注解是不行的
3.使用writeToFile(List
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
|
List
new
ArrayList
User u =
new
User();
u.setAge(
"3"
);
u.setName(
"fdsafdsa"
);
u.setXx(
123
.23D);
u.setYy(
new
Date());
u.setLocked(
false
);
u.setDb(
new
BigDecimal(
123
));
list.add(u);
u =
new
User();
u.setAge(
"23"
);
u.setName(
"fdsafdsa"
);
u.setXx(
123
.23D);
u.setYy(
new
Date());
u.setLocked(
true
);
u.setDb(
new
BigDecimal(
234
));
list.add(u);
u =
new
User();
u.setAge(
"123"
);
u.setName(
"fdsafdsa"
);
u.setXx(
123
.23D);
u.setYy(
new
Date());
u.setLocked(
false
);
u.setDb(
new
BigDecimal(
2344
));
list.add(u);
u =
new
User();
u.setAge(
"22"
);
u.setName(
"fdsafdsa"
);
u.setXx(
123
.23D);
u.setYy(
new
Date());
u.setLocked(
true
);
u.setDb(
new
BigDecimal(
908
));
list.add(u);
ExcelDataFormatter edf =
new
ExcelDataFormatter();
Map
new
HashMap
map.put(
"true"
,
"真"
);
map.put(
"false"
,
"假"
);
edf.set(
"locked"
, map);
writeToFile(list,edf,
"D:\\x.xlsx"
);
|
4. ExcelUtils读取Excel中的内容,使用readFromFile(ExcelDataFormatter edf, File file)方法,同时支持数据的格式化,用法如下:
1
2
3
4
5
6
7
8
9
|
ExcelDataFormatter edf =
new
ExcelDataFormatter();
Map
new
HashMap
map.put(
"真"
,
"true"
);
map.put(
"假"
,
"false"
);
edf.set(
"locked"
, map);
List
new
ExcelUtils
new
User()).readFromFile(edf,
new
File(
"D:\\x.xlsx"
));
//Gson转成JSON,查看,也可以使用其他类库自行去转,这里只是演示
System.out.println(
new
GsonBuilder().create().toJson(xx));
|
5.关键的,ExcelUtils类的源码来了
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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
|
package
org.xdemo.superutil.thirdparty.excel;
import
java.io.File;
import
java.io.FileInputStream;
import
java.io.FileNotFoundException;
import
java.io.FileOutputStream;
import
java.io.IOException;
import
java.io.InputStream;
import
java.lang.reflect.Field;
import
java.math.BigDecimal;
import
java.text.SimpleDateFormat;
import
java.util.ArrayList;
import
java.util.Date;
import
java.util.HashMap;
import
java.util.Iterator;
import
java.util.List;
import
java.util.Map;
import
org.apache.poi.hssf.usermodel.HSSFDateUtil;
import
org.apache.poi.hssf.util.HSSFColor;
import
org.apache.poi.ss.usermodel.Cell;
import
org.apache.poi.ss.usermodel.CellStyle;
import
org.apache.poi.ss.usermodel.CreationHelper;
import
org.apache.poi.ss.usermodel.DateUtil;
import
org.apache.poi.ss.usermodel.Font;
import
org.apache.poi.ss.usermodel.Row;
import
org.apache.poi.ss.usermodel.Sheet;
import
org.apache.poi.ss.usermodel.Workbook;
import
org.apache.poi.xssf.streaming.SXSSFWorkbook;
import
org.apache.poi.xssf.usermodel.XSSFCell;
import
org.apache.poi.xssf.usermodel.XSSFCellStyle;
import
org.apache.poi.xssf.usermodel.XSSFColor;
import
org.apache.poi.xssf.usermodel.XSSFFont;
import
org.apache.poi.xssf.usermodel.XSSFWorkbook;
import
org.xdemo.superutil.j2se.ReflectUtils;
import
com.google.gson.GsonBuilder;
/**
* Excel导出
*
* @author Goofy http://www.xdemo.org
*
*/
public
class
ExcelUtils
private
E e;
private
static
SimpleDateFormat sdf =
new
SimpleDateFormat(
"yyyy-MM-dd HH:mm:ss"
);
private
int
etimes =
0
;
public
ExcelUtils(E e) {
this
.e = e;
}
@SuppressWarnings
(
"unchecked"
)
public
E get()
throws
InstantiationException, IllegalAccessException {
return
(E) e.getClass().newInstance();
}
/**
* 将数据写入到Excel文件
*
* @param filePath
* 文件路径
* @param sheetName
* 工作表名称
* @param title
* 工作表标题栏
* @param data
* 工作表数据
* @throws FileNotFoundException
* 文件不存在异常
* @throws IOException
* IO异常
*/
public
static
void
writeToFile(String filePath, String[] sheetName, List
extends
Object[]> title, List
extends
List
extends
Object[]>> data)
throws
FileNotFoundException, IOException {
// 创建并获取工作簿对象
Workbook wb = getWorkBook(sheetName, title, data);
// 写入到文件
FileOutputStream out =
new
FileOutputStream(filePath);
wb.write(out);
out.close();
}
/**
* 创建工作簿对象
* 工作表名称,工作表标题,工作表数据最好能够对应起来
* 比如三个不同或相同的工作表名称,三组不同或相同的工作表标题,三组不同或相同的工作表数据
* 注意:
* 需要为每个工作表指定工作表名称,工作表标题,工作表数据
* 如果工作表的数目大于工作表数据的集合,那么首先会根据顺序一一创建对应的工作表名称和数据集合,然后创建的工作表里面是没有数据的
* 如果工作表的数目小于工作表数据的集合,那么多余的数据将不会写入工作表中
*
* @param sheetName
* 工作表名称的数组
* @param title
* 每个工作表名称的数组集合
* @param data
* 每个工作表数据的集合的集合
* @return Workbook工作簿
* @throws FileNotFoundException
* 文件不存在异常
* @throws IOException
* IO异常
*/
public
static
Workbook getWorkBook(String[] sheetName, List
extends
Object[]> title, List
extends
List
extends
Object[]>> data)
throws
FileNotFoundException, IOException {
// 创建工作簿
Workbook wb =
new
SXSSFWorkbook();
// 创建一个工作表sheet
Sheet sheet =
null
;
// 申明行
Row row =
null
;
// 申明单元格
Cell cell =
null
;
// 单元格样式
CellStyle titleStyle = wb.createCellStyle();
CellStyle cellStyle = wb.createCellStyle();
// 字体样式
Font font = wb.createFont();
// 粗体
font.setBoldweight(XSSFFont.BOLDWEIGHT_BOLD);
titleStyle.setFont(font);
// 水平居中
titleStyle.setAlignment(CellStyle.ALIGN_CENTER);
// 垂直居中
titleStyle.setVerticalAlignment(CellStyle.VERTICAL_CENTER);
// 水平居中
cellStyle.setAlignment(CellStyle.ALIGN_CENTER);
// 垂直居中
cellStyle.setVerticalAlignment(CellStyle.VERTICAL_CENTER);
cellStyle.setFillBackgroundColor(HSSFColor.BLUE.index);
// 标题数据
Object[] title_temp =
null
;
// 行数据
Object[] rowData =
null
;
// 工作表数据
List
extends
Object[]> sheetData =
null
;
// 遍历sheet
for
(
int
sheetNumber =
0
; sheetNumber < sheetName.length; sheetNumber++) {
// 创建工作表
sheet = wb.createSheet();
// 设置默认列宽
sheet.setDefaultColumnWidth(
18
);
// 设置工作表名称
wb.setSheetName(sheetNumber, sheetName[sheetNumber]);
// 设置标题
title_temp = title.get(sheetNumber);
row = sheet.createRow(
0
);
// 写入标题
for
(
int
i =
0
; i < title_temp.length; i++) {
cell = row.createCell(i);
cell.setCellStyle(titleStyle);
cell.setCellValue(title_temp[i].toString());
}
try
{
sheetData = data.get(sheetNumber);
}
catch
(Exception e) {
continue
;
}
// 写入行数据
for
(
int
rowNumber =
0
; rowNumber < sheetData.size(); rowNumber++) {
// 如果没有标题栏,起始行就是0,如果有标题栏,行号就应该为1
row = sheet.createRow(title_temp ==
null
? rowNumber : (rowNumber +
1
));
rowData = sheetData.get(rowNumber);
for
(
int
columnNumber =
0
; columnNumber < rowData.length; columnNumber++) {
cell = row.createCell(columnNumber);
cell.setCellStyle(cellStyle);
cell.setCellValue(rowData[columnNumber] +
""
);
}
}
}
return
wb;
}
/**
* 将数据写入到EXCEL文档
*
|