码迷,mamicode.com
首页 > 其他好文 > 详细

使用POI读取xlsx文件,包含对excel中自定义时间格式的处理

时间:2017-03-28 17:39:43      阅读:1000      评论:0      收藏:0      [点我收藏+]

标签:and   res   ldd   表头   file   ext   print   trace   java   

package poi;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.text.DecimalFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.apache.poi.ss.usermodel.CellStyle;
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;

public class GetExcelData {

    public static List<Map<Integer,Object>> readFile(File file){
        // excel中第几列 : 对应的表头
        Map<Integer,String> colAndNameMap = new HashMap<>();
        List<Map<Integer,Object>> resultList = new ArrayList<>();
        FileInputStream fs = null;
        XSSFWorkbook wb = null;
        try {
             fs = new FileInputStream(file);
             wb = new XSSFWorkbook(fs);
            for(int sheetIndex = 0; sheetIndex < wb.getNumberOfSheets(); sheetIndex++){
                //获取sheet数据
                XSSFSheet st = wb.getSheetAt(sheetIndex);
                //遍历一个sheet中每一行
                for (int rowIndex = 0; rowIndex <= st.getLastRowNum(); rowIndex++) {
                    // 表头:值
                    Map<Integer,Object> nameAndValMap = new HashMap<>();
                    // 获取到一行数据
                    XSSFRow row = st.getRow(rowIndex);
                    for(int cellIndex = 0; cellIndex < row.getPhysicalNumberOfCells(); cellIndex++){
                        
                        if(rowIndex==0){
                            colAndNameMap.put(cellIndex, row.getCell(cellIndex).getStringCellValue());
                        }else if(!colAndNameMap.isEmpty()){
                            nameAndValMap.put(cellIndex, buildDate(row.getCell(cellIndex)));
                        }
                    }
                    if(!nameAndValMap.isEmpty()){
                        resultList.add(nameAndValMap);
                    }
                }
            }
            return resultList;
        } catch (FileNotFoundException e) {
            System.out.println(">>>>>>>>>>  读取excel文件时出错了!!!");
            e.printStackTrace();
        } catch (IOException e) {
            System.out.println(">>>>>>>>>>  读取excel文件时出错了!!!");
            e.printStackTrace();
        } catch (Exception e) {
            System.out.println(">>>>>>>>>>  读取excel文件时出错了!!!");
            e.printStackTrace();
        } finally{
            try {
                wb.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
            try {
                fs.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return null;
    }

    // 将excel中时间格式字段进行处理
    @SuppressWarnings("deprecation")
    public static String buildDate(XSSFCell cell) {
        String result = new String();
        switch (cell.getCellType()) {
        case XSSFCell.CELL_TYPE_NUMERIC:
            if (cell.getCellStyle().getDataFormat() == 176) {
                // 处理自定义日期格式:m月d日(通过判断单元格的格式id解决,id的值是58)
                SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
                double value = cell.getNumericCellValue();
                Date date = org.apache.poi.ss.usermodel.DateUtil.getJavaDate(value);
                result = sdf.format(date);
            } else {
                double value = cell.getNumericCellValue();
                CellStyle style = cell.getCellStyle();
                DecimalFormat format = new DecimalFormat();
                String temp = style.getDataFormatString();
                // 单元格设置成常规
                if (temp.equals("General")) {
                    format.applyPattern("#");
                }
                result = format.format(value);
            }
            break;
        case XSSFCell.CELL_TYPE_STRING:// String类型
            result = cell.getStringCellValue();
            break;
        default:
            result = "";
            break;
        }
        return result;
    }

}

 

使用POI读取xlsx文件,包含对excel中自定义时间格式的处理

标签:and   res   ldd   表头   file   ext   print   trace   java   

原文地址:http://www.cnblogs.com/ning-blogs/p/6635909.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!