Helius
2020-12-15 2914588a65371a3ce43f678cde0a26cd8da26611
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
    package com.matrix.system.hive.plugin.util;
 
import org.apache.poi.hssf.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
 
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.text.DecimalFormat;
import java.text.SimpleDateFormat;
import java.util.LinkedList;
import java.util.List;
/**
 * excel导入(根据需求调用03/07版本方法导入)
* @ClassName: ExcelImport 
* @author jyy
* @date 2016年8月2日 上午10:39:04 
*
 */
public class ExcelImport {
    /**
     * 对外提供读取excel 的方法
     */
    public static List<List<Object>> readExcel(File file, String fileName, Integer rowNum, Integer cellNum)
            throws IOException {
        String extension = fileName.lastIndexOf(".") == -1 ? "" : fileName.substring(fileName.lastIndexOf(".") + 1);
        if ("xls".equals(extension)) {
            return read2003Excel(file, rowNum, cellNum);
        } else if ("xlsx".equals(extension)) {
            return read2007Excel(file, rowNum, cellNum);
        } else {
            throw new IOException("不支持的文件类型");
        }
    }
 
    /**
     * 
    * @Title: read2003Excel 
    * @param @param file 待读取的文件
    * @param @param rowNum 行数
    * @param @param cellNum 列数
    * @param @return
    * @param @throws IOException    设定文件 
    * @return List<List<Object>>    返回类型  Object:单元格对象  List<Object>:行对象  List<List<Object>>:整个excel对象
    * @throws
     */
    private static List<List<Object>> read2003Excel(File file, Integer rowNum, Integer cellNum) throws IOException {
        List<List<Object>> list = new LinkedList<List<Object>>();
        HSSFWorkbook hwb = new HSSFWorkbook(new FileInputStream(file));
        HSSFSheet sheet = hwb.getSheetAt(0);
        Object value = null;
        HSSFRow row = null;
        HSSFCell cell = null;
        Integer rowsNum = 0;// 读取的行数
        Integer cellsNum = 0;// 读取的列数
        if (rowNum != null) {
            rowsNum = rowNum;
        } else {
            rowsNum = sheet.getPhysicalNumberOfRows();
        }
        for (int i = sheet.getFirstRowNum(); i <= rowsNum; i++) {
            row = sheet.getRow(i);
            if (row == null) {
                continue;
            }
            if (row.getFirstCellNum() < 0) {
                continue;
            }
            List<Object> linked = new LinkedList<Object>();
            if (cellNum != null) {
                cellsNum = cellNum;
            } else {
                cellsNum = (int) row.getLastCellNum();
            }
            for (int j = 0; j <= cellsNum; j++) {// row.getFirstCellNum()
                cell = row.getCell(j);
                if (cell == null) {
                    value = null;
                } else {
                    DecimalFormat df = new DecimalFormat("0");// 格式化 number
                                                                // String
                    // 字符
                    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");// 格式化日期字符串
                    DecimalFormat nf = new DecimalFormat("0.00");// 格式化数字
                    switch (cell.getCellType()) {
                    case XSSFCell.CELL_TYPE_STRING:
                        value = cell.getStringCellValue();
                        break;
                    case XSSFCell.CELL_TYPE_NUMERIC:
                        if ("@".equals(cell.getCellStyle().getDataFormatString())) {
                            value = df.format(cell.getNumericCellValue());
                        } else if ("General".equals(cell.getCellStyle().getDataFormatString())) {
                            value = nf.format(cell.getNumericCellValue());
                        } else {
                            value = sdf.format(HSSFDateUtil.getJavaDate(cell.getNumericCellValue()));
                        }
                        break;
                    case XSSFCell.CELL_TYPE_BOOLEAN:
                        value = cell.getBooleanCellValue();
                        break;
                    case XSSFCell.CELL_TYPE_BLANK:
                        value = "";
                        break;
                    default:
                        value = cell.toString();
                    }
                }
                linked.add(value);
            }
            list.add(linked);
        }
        return list;
    }
 
    
    /**
     * 
    * @Title: read2007Excel 
    * @param @param file 待读取的文件
    * @param @param rowNum 行数
    * @param @param cellNum 列数
    * @param @return
    * @param @throws IOException    设定文件 
    * @return List<List<Object>>    返回类型  Object:单元格对象  List<Object>:行对象  List<List<Object>>:整个excel对象
    * @throws
     */
    private static List<List<Object>> read2007Excel(File file, Integer rowNum, Integer cellNum) throws IOException {
        List<List<Object>> list = new LinkedList<List<Object>>();
        // 构造 XSSFWorkbook 对象,strPath 传入文件路径
        XSSFWorkbook xwb = new XSSFWorkbook(new FileInputStream(file));
        // 读取第一章表格内容
        XSSFSheet sheet = xwb.getSheetAt(0);
        Object value = null;
        XSSFRow row = null;
        XSSFCell cell = null;
        Integer rowsNum = 0;// 读取的行数
        Integer cellsNum = 0;// 读取的列数
        if (rowNum != null) {
            rowsNum = rowNum;
        } else {
            rowsNum = sheet.getPhysicalNumberOfRows();
        }
        for (int i = sheet.getFirstRowNum(); i <= rowsNum; i++) {
            row = sheet.getRow(i);
            if (row == null) {
                continue;
            }
            if (row.getFirstCellNum() < 0) {
                continue;
            }
            if (cellNum != null) {
                cellsNum = cellNum;
            } else {
                cellsNum = (int) row.getLastCellNum();
            }
            List<Object> linked = new LinkedList<Object>();
            for (int j = 0; j <= cellsNum; j++) {
                cell = row.getCell(j);
                if (cell == null) {
                    value = null;
                } else {
                    DecimalFormat df = new DecimalFormat("0");// 格式化 number
                                                                // String
                    // 字符
                    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");// 格式化日期字符串
                    DecimalFormat nf = new DecimalFormat("0.00");// 格式化数字
                    switch (cell.getCellType()) {
                    case XSSFCell.CELL_TYPE_STRING:
                        value = cell.getStringCellValue();
                        break;
                    case XSSFCell.CELL_TYPE_NUMERIC:
                        if ("@".equals(cell.getCellStyle().getDataFormatString())) {
                            value = df.format(cell.getNumericCellValue());
                        } else if ("General".equals(cell.getCellStyle().getDataFormatString())) {
                            value = nf.format(cell.getNumericCellValue());
                        } else {
                            value = sdf.format(HSSFDateUtil.getJavaDate(cell.getNumericCellValue()));
                        }
                        break;
                    case XSSFCell.CELL_TYPE_BOOLEAN:
                        value = cell.getBooleanCellValue();
                        break;
                    case XSSFCell.CELL_TYPE_BLANK:
                        value = "";
                        break;
                    default:
                        value = cell.toString();
                    }
                }
                linked.add(value);
            }
            list.add(linked);
        }
        return list;
    }
/**
 * 
* @Title: getCellValue 
*  获取某个单元格数据
* @param @param cell
* @param @return
* @param @throws Exception    设定文件 
* @return Object    返回类型 
* @throws
 */
    public static Object getCellValue(HSSFCell cell) throws Exception {
        Object value = null;
        if (cell != null) {
            DecimalFormat df = new DecimalFormat("0");// 格式化
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");// 格式化日期字符串
            DecimalFormat nf = new DecimalFormat("0.00");// 格式化数字
            switch (cell.getCellType()) {
            case XSSFCell.CELL_TYPE_STRING:
                value = cell.getStringCellValue();
                break;
            case XSSFCell.CELL_TYPE_NUMERIC:
                if ("@".equals(cell.getCellStyle().getDataFormatString())) {
                    value = df.format(cell.getNumericCellValue());
                } else if ("General".equals(cell.getCellStyle().getDataFormatString())) {
                    value = nf.format(cell.getNumericCellValue());
                } else {
                    value = sdf.format(HSSFDateUtil.getJavaDate(cell.getNumericCellValue()));
                }
                break;
            case XSSFCell.CELL_TYPE_BOOLEAN:
                value = cell.getBooleanCellValue();
                break;
            case XSSFCell.CELL_TYPE_BLANK:
                value = "";
                break;
            default:
                value = cell.toString();
            }
        }
        return value;
    }
 
    public static void main(String[] args) throws IOException {
    }
}