map转化成excel 与excel转换成map

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档


前言

用于java list转换成excel文件 以及excel转map的方法。


1.map转excel

代码如下:


/**
 * 将List<Map<String,Object>> 类型数据导出到Excel文件
 */
public class DataToExcel {
    @Data
    @AllArgsConstructor
    @NoArgsConstructor
    public static class Student {
        String name;
        int age;
        String sex;
    }

    /**
     * src:定义下载的文件路径
     * @param src
     */
    public static void createExcel(String src) {
        System.out.println("数据加载...");
        List<Student> list = new ArrayList<>();
        Student s1 = new Student("张三", 22, "男");
        Student s2 = new Student("李四", 22, "男");
        Student s3 = new Student("王五", 22, "男");
        Student s4 = new Student("赵敏", 22, "女");
        Student s5 = new Student("张无忌", 22, "男");
        list.add(s1);
        list.add(s2);
        list.add(s3);
        list.add(s4);
        list.add(s5);
        System.out.println("数据加载完成...");
        List<Map<String, Object>> mapArrayList = new ArrayList<>();
        list.forEach(o -> {
            Map<String, Object> map = new HashMap<>();
            map.put("姓名", o.getName());
            map.put("年龄", o.getAge());
            map.put("性别", o.getSex());
            mapArrayList.add(map);
        });

        System.out.println("数据转成Excel...");
        // 定义一个新的工作簿
        XSSFWorkbook wb = new XSSFWorkbook();
        // 创建一个Sheet页
        XSSFSheet sheet = wb.createSheet("First sheet");
        //设置行高
        sheet.setDefaultRowHeight((short) (2 * 256));
        //设置列宽
        sheet.setColumnWidth(0, 4000);
        sheet.setColumnWidth(1, 4000);
        sheet.setColumnWidth(2, 4000);
        XSSFFont font = wb.createFont();
        font.setFontName("宋体");
        font.setFontHeightInPoints((short) 16);
        //获得表格第一行
        XSSFRow row = sheet.createRow(0);
        //根据需要给第一行每一列设置标题
        XSSFCell cell = row.createCell(0);
        cell.setCellValue("姓名");
        cell = row.createCell(1);
        cell.setCellValue("年龄");
        cell = row.createCell(2);
        cell.setCellValue("性别");
        XSSFRow rows;
        XSSFCell cells;
        //循环拿到的数据给所有行每一列设置对应的值
        for (int i = 0; i < mapArrayList.size(); i++) {

            // 在这个sheet页里创建一行
            rows = sheet.createRow(i + 1);
            // 该行创建一个单元格,在该单元格里设置值
            String name = mapArrayList.get(i).get("姓名").toString();
            int age = (int) mapArrayList.get(i).get("年龄");
            String sex = mapArrayList.get(i).get("性别").toString();
            cells = rows.createCell(0);
            cells.setCellValue(name);
            cells = rows.createCell(1);
            cells.setCellValue(age);
            cells = rows.createCell(2);
            cells.setCellValue(sex);
        }
        try {
            File file = new File(src);
            FileOutputStream fileOutputStream = new FileOutputStream(file);
            wb.write(fileOutputStream);
            wb.close();
            fileOutputStream.close();
        } catch (IOException e) {
            e.printStackTrace();
        }

    }

    public static void main(String[] args) {
        createExcel("d:/aaaa.xls");
    }

}

2.excel 转 map

代码如下:

/**
*  Excel文件流 -->  List <Map<String,Object>>  对象
想直接转成java bean的朋友可以使用fastjson将  List<Map<String,Object>>转成bean对象
*
*/



public class ImportExcelUtil {

    private static Logger log = Logger.getLogger(ImportExcelUtil.class);

    private final static String excel2003L = ".xls"; // 2003- 版本的excel
    private final static String excel2007U = ".xlsx"; // 2007+ 版本的excel

    /**
     * 将流中的Excel数据转成List<Map>
     * 
     * @param in
     *            输入流
     * @param fileName
     *            文件名(判断Excel版本)
     * @param mapping
     *            字段名称映射
     * @return
     * @throws Exception
     */
    public static List<Map<String, Object>> parseExcel(InputStream in, String fileName,
            Map<String, String> mapping) throws Exception {
        // 根据文件名来创建Excel工作薄
        Workbook work = getWorkbook(in, fileName);
        if (null == work) {
            throw new Exception("创建Excel工作薄为空!");
        }
        Sheet sheet = null;
        Row row = null;
        Cell cell = null;
        // 返回数据
        List<Map<String, Object>> ls = new ArrayList<Map<String, Object>>();

        // 遍历Excel中所有的sheet
        for (int i = 0; i < work.getNumberOfSheets(); i++) {
            sheet = work.getSheetAt(i);
            if (sheet == null)
                continue;

            // 取第一行标题
            row = sheet.getRow(0);
            String title[] = null;
            if (row != null) {
                title = new String[row.getLastCellNum()];

                for (int y = row.getFirstCellNum(); y < row.getLastCellNum(); y++) {
                    cell = row.getCell(y);
                    title[y] = (String) getCellValue(cell);
                }

            } else
                continue;
            log.info(JSON.toJSONString(title));

            // 遍历当前sheet中的所有行
            for (int j = 1; j < sheet.getLastRowNum() + 1; j++) {
                row = sheet.getRow(j);
                Map<String, Object> m = new HashMap<String, Object>();
                // 遍历所有的列
                for (int y = row.getFirstCellNum(); y < row.getLastCellNum(); y++) {
                    cell = row.getCell(y);
                    String key = title[y];
                    // log.info(JSON.toJSONString(key));
                    m.put(mapping.get(key), getCellValue(cell));
                }
                ls.add(m);
            }

        }
        work.close();
        return ls;
    }

    /**
     * 描述:根据文件后缀,自适应上传文件的版本
     * 
     * @param inStr
     *            ,fileName
     * @return
     * @throws Exception
     */
    public static Workbook getWorkbook(InputStream inStr, String fileName) throws Exception {
        Workbook wb = null;
        String fileType = fileName.substring(fileName.lastIndexOf("."));
        if (excel2003L.equals(fileType)) {
            wb = new HSSFWorkbook(inStr); // 2003-
        } else if (excel2007U.equals(fileType)) {
            wb = new XSSFWorkbook(inStr); // 2007+
        } else {
            throw new Exception("解析的文件格式有误!");
        }
        return wb;
    }

    /**
     * 描述:对表格中数值进行格式化
     * 
     * @param cell
     * @return
     */
    public static Object getCellValue(Cell cell) {
        Object value = null;
        DecimalFormat df = new DecimalFormat("0"); // 格式化number String字符
        SimpleDateFormat sdf = new SimpleDateFormat("yyy-MM-dd"); // 日期格式化
        DecimalFormat df2 = new DecimalFormat("0"); // 格式化数字

        switch (cell.getCellType()) {
        case Cell.CELL_TYPE_STRING:
            value = cell.getRichStringCellValue().getString();
            break;
        case Cell.CELL_TYPE_NUMERIC:
            if ("General".equals(cell.getCellStyle().getDataFormatString())) {
                value = df.format(cell.getNumericCellValue());
            } else if ("m/d/yy".equals(cell.getCellStyle().getDataFormatString())) {
                value = sdf.format(cell.getDateCellValue());
            } else {
                value = df2.format(cell.getNumericCellValue());
            }
            break;
        case Cell.CELL_TYPE_BOOLEAN:
            value = cell.getBooleanCellValue();
            break;
        case Cell.CELL_TYPE_BLANK:
            value = "";
            break;
        default:
            break;
        }
        return value;
    }

    public static void main(String[] args) throws Exception {   
        File file = new File("D:\\studn.xls");
        FileInputStream fis = new FileInputStream(file);
        Map<String, String> m = new HashMap<String, String>();
        m.put("id", "id");
        m.put("姓名", "name");
        m.put("年龄", "age");
        List<Map<String, Object>> ls = parseExcel(fis, file.getName(), m);
        System.out.println(JSON.toJSONString(ls));
    }
}

3.依赖的包

<org.poi-version>3.14</org.poi-version>
    <!-- Excel -->
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>${org.poi-version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>${org.poi-version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-examples</artifactId>
            <version>${org.poi-version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-excelant</artifactId>
            <version>${org.poi-version}</version>
        </dependency>

总结

不同的场景字段不同都要重新写有点麻烦需要再改改。

  • 2
    点赞
  • 12
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
可以使用阿里巴巴的 EasyExcel 库来读取 Excel 并将其转换为 List<Map>。 以下是一个示例代码: ```java // 读取 Excel 文件 InputStream inputStream = new FileInputStream("path/to/excel/file.xlsx"); ExcelReader excelReader = new ExcelReader(inputStream, ExcelTypeEnum.XLSX, null, new AnalysisEventListener<List<String>>() { @Override public void invoke(List<String> rowData, AnalysisContext analysisContext) { // 处理每一行数据 Map<String, String> rowMap = new HashMap<>(); for (int i = 0; i < rowData.size(); i++) { rowMap.put("col_" + i, rowData.get(i)); } dataList.add(rowMap); } @Override public void doAfterAllAnalysed(AnalysisContext analysisContext) { // Excel 读取完成后的回调方法 } }); // 读取 Sheet excelReader.read(new Sheet(1, 1)); // 关闭 Excel 读取器 excelReader.finish(); ``` 在上面的代码中,我们使用 `ExcelReader` 类来读取 Excel 文件。在 `AnalysisEventListener` 中,我们实现了两个回调方法:`invoke` 和 `doAfterAllAnalysed`。`invoke` 方法会在每读取一行数据时被调用,我们在其中将该行数据转换为一个 Map,并添加到 `dataList` 中。`doAfterAllAnalysed` 方法则会在 Excel 文件全部读取完成后被调用。 最后,我们使用 `Sheet` 类来指定要读取的 Sheet,然后调用 `read` 方法开始读取 Excel 文件。读取完成后,我们需要调用 `finish` 方法关闭 Excel 读取器。 注意:在示例代码中,我们假设 Excel 文件的第一行是表头,因此不会被读取。如果你的 Excel 文件没有表头,需要在 `Sheet` 构造方法中将第二个参数设为 0,例如 `new Sheet(1, 0)`。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值