2014年2月25日 14:24:48 解析excel方法
//首先是jar包下载,请自行百度
//代码
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 |
package
cn.wuwenfu.excel; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; 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
java.util.Set; import
org.apache.poi.hssf.usermodel.HSSFCell; import
org.apache.poi.hssf.usermodel.HSSFDateUtil; import
org.apache.poi.hssf.usermodel.HSSFWorkbook; import
org.apache.poi.ss.usermodel.Cell; 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.usermodel.XSSFWorkbook; public
class ExcelHand { /** 总行数 */ private
int totalRows = 0 ; /** 总列数 */ private
int totalCells = 0 ; /** 错误信息 */ private
String errorInfo; /** 构造方法 */ public
ExcelHand() { } /** * * @描述:得到总行数 * @参数:@return * * @返回值:int */ public
int getTotalRows() { return
totalRows; } /** * * @描述:得到总列数 * @参数:@return * * @返回值:int */ public
int getTotalCells() { return
totalCells; } /** * * @描述:得到错误信息 * * @参数:@return * * @返回值:String */ public
String getErrorInfo() { return
errorInfo; } /** * * @描述:验证excel文件 * * @参数:@param filePath 文件完整路径 * * @参数:@return * * @返回值:boolean */ public
boolean validateExcel(String filePath) { /** 检查文件名是否为空或者是否是Excel格式的文件 */ if
(filePath == null
|| !(WDWUtil.isExcel2003(filePath) || WDWUtil.isExcel2007(filePath))) { errorInfo = "文件名不是excel格式" ; return
false ; } System.out.println(filePath); /** 检查文件是否存在 */ File file = new
File(filePath); if
(file == null
|| !file.exists()) { errorInfo = "文件不存在" ; return
false ; } return
true ; } /** * * @描述:根据文件名读取excel文件 * * @参数:@param filePath 文件完整路径 * * @参数:@return * * @返回值:List */ public
List<List<String>> read(String filePath) { //String filePath = ServletActionContext.getServletContext().getRealPath(path); List<List<String>> dataLst = new
ArrayList<List<String>>(); InputStream is = null ; try { /** 验证文件是否合法 */ if
(!validateExcel(filePath)) { System.out.println(errorInfo); return
null ; } /** 判断文件的类型,是2003还是2007 */ boolean
isExcel2003 = true ; if
(WDWUtil.isExcel2007(filePath)) { isExcel2003 = false ; } /** 调用本类提供的根据流读取的方法 */ File file = new
File(filePath); is = new
FileInputStream(file); dataLst = read(is, isExcel2003); is.close(); } catch
(Exception ex) { ex.printStackTrace(); } finally { if
(is != null ) { try { is.close(); } catch
(IOException e) { is = null ; e.printStackTrace(); } } } /** 返回最后读取的结果 */ return
dataLst; } /** * * @描述:根据流读取Excel文件 * * @参数:@param inputStream * * @参数:@param isExcel2003 * * @参数:@return * * @返回值:List */ public
List<List<String>> read(InputStream inputStream, boolean
isExcel2003) { List<List<String>> dataLst = null ; try { /** 根据版本选择创建Workbook的方式 */ Workbook wb = null ; if
(isExcel2003) { wb = new
HSSFWorkbook(inputStream); } else { wb = new
XSSFWorkbook(inputStream); } dataLst = read(wb); } catch
(IOException e) { e.printStackTrace(); } return
dataLst; } /** * * @描述:读取数据 * * @参数:@param Workbook * * @参数:@return * * @返回值:List<List<String>> */ private
List<List<String>> read(Workbook wb) { List<List<String>> dataLst = new
ArrayList<List<String>>(); /** 得到第一个shell */ Sheet sheet = wb.getSheetAt( 0 ); /** 得到Excel的行数 */ this .totalRows = sheet.getPhysicalNumberOfRows(); /** 得到Excel的列数 */ if
( this .totalRows >= 1
&& sheet.getRow( 0 ) != null ) { this .totalCells = sheet.getRow( 0 ).getPhysicalNumberOfCells(); } /** 循环Excel的行 */ for
( int r = 0 ; r < this .totalRows; r++) { Row row = sheet.getRow(r); if
(row == null ) { continue ; } List<String> rowLst = new
ArrayList<String>(); /** 循环Excel的列 */ for
( int c = 0 ; c < this .getTotalCells(); c++) { Cell cell = row.getCell(c); //String key=row.getCell(0).getStringCellValue(); String cellValue = "" ; if
( null != cell) { //cellValue=cell.getStringCellValue(); // 以下是判断数据的类型 switch
(cell.getCellType()) { case
HSSFCell.CELL_TYPE_NUMERIC: // 数字 //cellValue = cell.getNumericCellValue() + ""; if
(HSSFDateUtil.isCellDateFormatted(cell)) { // 如果是Date类型则,取得该Cell的Date值 Date date = cell.getDateCellValue(); // 把Date转换成本地格式的字符串 cellValue = DateUtil.format(date, "yyyy-MM-dd HH:mm:ss" ); System.out.println(cellValue); } // 如果是纯数字 else
{ // 取得当前Cell的数值 Integer num = new
Integer(( int ) cell.getNumericCellValue()); cellValue = String.valueOf(num); } break ; case
HSSFCell.CELL_TYPE_STRING: // 字符串 cellValue = cell.getStringCellValue(); break ; case
HSSFCell.CELL_TYPE_BOOLEAN: // Boolean cellValue = cell.getBooleanCellValue() + "" ; break ; case
HSSFCell.CELL_TYPE_FORMULA: // 公式 cellValue = cell.getCellFormula() + "" ; break ; case
HSSFCell.CELL_TYPE_BLANK: // 空值 cellValue = "" ; break ; case
HSSFCell.CELL_TYPE_ERROR: // 故障 cellValue = "非法字符" ; break ; default : cellValue = "未知类型" ; break ; } } // System.out.print(cellValue+" "); rowLst.add(cellValue); } // System.out.println(); /** 保存第r行的第c列 */ dataLst.add(rowLst); } return
dataLst; } /** * 将excel解析后的集合封装成Map形式,在这我没有直接在excel解析的时候就封装,看个人需求 * @param list * @return */ public
static List<Map<String,String>> reflectMapList(List<List<String>> list){ ExcelHand poi = new
ExcelHand(); List<Map<String, String>> mlist= new
ArrayList<Map<String,String>>(); Map<String, String> map = new
HashMap<String, String>(); if
(list != null ) { for
( int i = 1 ; i < list.size(); i++) { map = new
HashMap<String, String>(); // System.out.print("第" + (i) + "行"); List<String> cellList = list.get(i); for
( int j = 0 ; j < cellList.size(); j++) { map.put(list.get( 0 ).get(j), cellList.get(j)); // System.out.print(" 第" + (j + 1) + "列值:"); // System.out.print(list.get(0).get(j)+"--" + cellList.get(j)+" "); } //System.out.println(); //System.out.println(map); mlist.add(map); } } return
mlist; } } /** * * @描述:工具类 */ class
WDWUtil { /** * * @描述:是否是2003的excel,返回true是2003 * * @参数:@param filePath 文件完整路径 * * @参数:@return * * @返回值:boolean */ public
static boolean isExcel2003(String filePath) { return
filePath.matches( "^.+\\.(?i)(xls)$" ); } /** * * @描述:是否是2007的excel,返回true是2007 * * @参数:@param filePath 文件完整路径 * * @参数:@return * * @返回值:boolean */ public
static boolean isExcel2007(String filePath) { return
filePath.matches( "^.+\\.(?i)(xlsx)$" ); } } |
//测试类
我的excel文件放在c盘,单独取出了excel中的第三个单元格的字段,然后组合成字符串,写入了txt中。
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 |
package
cn.wuwenfu.excel; import java.util.List; public class TestMain { /** * * @描述:main测试方法 * * @参数:@param args * * @参数:@throws Exception * * @返回值:void * */ public
static void main(String[] args) throws
Exception { ExcelHand poi = new
ExcelHand(); //获取解析后的集合 List<List<String>> lists = poi.read( "c:/1.xls" ); System.out.println(lists.size()); String str= "" ; int
j= 0 ; for
(List<String> t : lists) { if (j== 0 ){ //跳过表格的第一行 j++; continue ; } int
i= 0 ; String temp = "" ; for (String s: t){ System.out.print(s+ " " ); //如果是第三个单元格就添加到字符串中 if (i== 2 ){ str +=s+ "," ; temp=s; } //第四个单元格有数据,替换第三个单元格的 if (i== 3 &&!s.isEmpty()){ //System.out.println("字符串:"+str); str = str.substring( 0 , str.indexOf(temp)); str +=s+ "," ; // str = str.replace(temp, s); } i++; } System.out.println(); } System.out.println(str); //写入日志 Log.write(str, "c:/sds.txt" ); System.out.println( "写入到c:/sds.txt" ); //首先获得需要的字符串 /* //对集合进行重新组装 Map<字段,值> List<Map<String,String>> list= ExcelHand.reflectMapList(lists); //调用工具类,组成对象集合 List<TravelerInfo> ts=Tool.reflectObj(TravelerInfo.class, list); //遍历 for (TravelerInfo t : ts) { System.out.println(t.getAirline_code()+" | "+ t.getFlight_num()+" | "+t.getSto()+" | "+t.getNationality()+"| ………………"); } */ } } |
原文:http://www.cnblogs.com/jsRunner/p/3566645.html