关于java:JAVA日常工作POIUtils

43次阅读

共计 4953 个字符,预计需要花费 13 分钟才能阅读完成。

记录一下工作中应用的 poi(能够做为工具类来应用)

/**
 * 解决 excel 读入的工具类
 * Created by Liujishuai on 2015/8/5.
 */
public class ExcelUtils {
    /**
     * 要求 excel 版本在 2007 以上
     *
     * @param file 文件信息
     * @return
     * @throws Exception
     */
    public static List<List<Object>> readExcel(File file) throws Exception {if(!file.exists()){throw new Exception("找不到文件");
        }
        List<List<Object>> list = new LinkedList<List<Object>>();
        XSSFWorkbook xwb = new XSSFWorkbook(new FileInputStream(file));
        // 读取第一张表格内容
        XSSFSheet sheet = xwb.getSheetAt(0);
        XSSFRow row = null;
        XSSFCell cell = null;
        for (int i = (sheet.getFirstRowNum() + 1); i <= (sheet.getPhysicalNumberOfRows() - 1); i++) {row = sheet.getRow(i);
            if (row == null) {continue;}
            List<Object> linked = new LinkedList<Object>();
            for (int j = row.getFirstCellNum(); j <= row.getLastCellNum(); j++) {
                Object value = null;
                cell = row.getCell(j);
                if (cell == null) {continue;}
                switch (cell.getCellType()) {
                    case XSSFCell.CELL_TYPE_STRING:
                        //String 类型返回 String 数据
                        value = cell.getStringCellValue();
                        break;
                    case XSSFCell.CELL_TYPE_NUMERIC:
                        // 日期数据返回 LONG 类型的工夫戳
                        if ("yyyy\" 年 \"m\" 月 \"d\" 日 \";@".equals(cell.getCellStyle().getDataFormatString())) {//System.out.println(cell.getNumericCellValue()+": 日期格局:"+cell.getCellStyle().getDataFormatString());
                            value = DateUtils.getMillis(HSSFDateUtil.getJavaDate(cell.getNumericCellValue())) / 1000;
                        } else {
                            // 数值类型返回 double 类型的数字
                            //System.out.println(cell.getNumericCellValue()+": 格局:"+cell.getCellStyle().getDataFormatString());
                            value = cell.getNumericCellValue();}
                        break;
                    case XSSFCell.CELL_TYPE_BOOLEAN:
                        // 布尔类型
                        value = cell.getBooleanCellValue();
                        break;
                    case XSSFCell.CELL_TYPE_BLANK:
                        // 空单元格
                        break;
                    default:
                        value = cell.toString();}
                if (value != null && !value.equals("")) {
                    // 单元格不为空,则退出列表
                    linked.add(value);
                }
            }
            if (linked.size()!= 0) {list.add(linked);
            }
        }
        return list;
    }
    /**
     * 要求 excel 版本在 2007 以上
     *
     * @param fileInputStream 文件信息
     * @return
     * @throws Exception
     */
    public static List<List<Object>> readExcel(FileInputStream fileInputStream) throws Exception {List<List<Object>> list = new LinkedList<List<Object>>();
        XSSFWorkbook xwb = new XSSFWorkbook(fileInputStream);
        // 读取第一张表格内容
        XSSFSheet sheet = xwb.getSheetAt(1);
        XSSFRow row = null;
        XSSFCell cell = null;
        for (int i = (sheet.getFirstRowNum() + 1); i <= (sheet.getPhysicalNumberOfRows() - 1); i++) {row = sheet.getRow(i);
            if (row == null) {continue;}
            List<Object> linked = new LinkedList<Object>();
            for (int j = row.getFirstCellNum(); j <= row.getLastCellNum(); j++) {
                Object value = null;
                cell = row.getCell(j);
                if (cell == null) {continue;}
                switch (cell.getCellType()) {
                    case XSSFCell.CELL_TYPE_STRING:
                        value = cell.getStringCellValue();
                        break;
                    case XSSFCell.CELL_TYPE_NUMERIC:
                        if ("yyyy\" 年 \"m\" 月 \"d\" 日 \";@".equals(cell.getCellStyle().getDataFormatString())) {//System.out.println(cell.getNumericCellValue()+": 日期格局:"+cell.getCellStyle().getDataFormatString());
                            value = DateUtils.getMillis(HSSFDateUtil.getJavaDate(cell.getNumericCellValue())) / 1000;
                        } else {//System.out.println(cell.getNumericCellValue()+": 格局:"+cell.getCellStyle().getDataFormatString());
                            value = cell.getNumericCellValue();}
                        break;
                    case XSSFCell.CELL_TYPE_BOOLEAN:
                        value = cell.getBooleanCellValue();
                        break;
                    case XSSFCell.CELL_TYPE_BLANK:
                        break;
                    default:
                        value = cell.toString();}
                if (value != null && !value.equals("")) {
                    // 单元格不为空,则退出列表
                    linked.add(value);
                }
            }
            if (linked.size()!= 0) {list.add(linked);
            }
        }
        return list;
    }
 
    /**
     * 导出 excel
     * @param excel_name 导出的 excel 门路(须要带.xlsx)
     * @param headList  excel 的题目备注名称
     * @param fieldList excel 的题目字段(与数据中 map 中键值对应)* @param dataList  excel 数据
     * @throws Exception
     */
    public static void createExcel(String excel_name, String[] headList,
                                   String[] fieldList, List<Map<String, Object>> dataList)
            throws Exception {
        // 创立新的 Excel 工作簿
        XSSFWorkbook workbook = new XSSFWorkbook();
        // 在 Excel 工作簿中建一工作表,其名为缺省值
        XSSFSheet sheet = workbook.createSheet();
        // 在索引 0 的地位创立行(最顶端的行)XSSFRow row = sheet.createRow(0);
        // 设置 excel 头(第一行)的头名称
        for (int i = 0; i < headList.length; i++) {
 
            // 在索引 0 的地位创立单元格(左上端)XSSFCell cell = row.createCell(i);
            // 定义单元格为字符串类型
            cell.setCellType(XSSFCell.CELL_TYPE_STRING);
            // 在单元格中输出一些内容
            cell.setCellValue(headList[i]);
        }
        // ===============================================================
        // 增加数据
        for (int n = 0; n < dataList.size(); n++) {
            // 在索引 1 的地位创立行(最顶端的行)XSSFRow row_value = sheet.createRow(n + 1);
            Map<String, Object> dataMap = dataList.get(n);
            // ===============================================================
            for (int i = 0; i < fieldList.length; i++) {
 
                // 在索引 0 的地位创立单元格(左上端)XSSFCell cell = row_value.createCell(i);
                // 定义单元格为字符串类型
                cell.setCellType(XSSFCell.CELL_TYPE_STRING);
                // 在单元格中输出一些内容
                cell.setCellValue((dataMap.get(fieldList[i])).toString());
            }
            // ===============================================================
        }
        // 新建一输入文件流
        FileOutputStream fos = new FileOutputStream(excel_name);
        // 把相应的 Excel 工作簿存盘
        workbook.write(fos);
        fos.flush();
        // 操作完结,敞开文件
        fos.close();}
}

在应用 poi 之前要导入相干的 jar 包(poi 的 jar 包的作用)


应用之前导入 jar 包

<!--poi 对 excel2007 以上版本的反对 -->
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>3.12</version>
        </dependency>

在应用 poi 时在导入 excel 文件时遇到了 ### java.lang.ClassNotFoundException 异样
解决的计划是:
导入了 jar 包

<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
<dependency>
 <groupId>org.apache.poi</groupId>
 <artifactId>poi-ooxml</artifactId>
 <version>4.1.2</version>
</dependency>
<dependency>
 <groupId>org.apache.poi</groupId>
 <artifactId>poi-ooxml-schemas</artifactId>
 <version>4.1.2</version>
</dependency>

要留神版本,不要造成版本抵触.

正文完
 0