POI對Excel自訂日期格式的讀取

來源:互聯網
上載者:User

標籤:

文章來源:http://yl-fighting.iteye.com/blog/1726285

用POI讀取Excel資料:(版本號碼:POI3.7)

1、讀取Excel

Java代碼  
  1. private List<String[]> rosolveFile(InputStream is, String suffix,  
  2.             int startRow) throws IOException, FileNotFoundException {  
  3.         Workbook xssfWorkbook = null;  
  4.         if ("xls".equals(suffix)) {  
  5.             xssfWorkbook = new HSSFWorkbook(is);  
  6.         } else if ("xlsx".equals(suffix)) {  
  7.             xssfWorkbook = new XSSFWorkbook(is);  
  8.         }  
  9.         Sheet xssfSheet = xssfWorkbook.getSheetAt(0);  
  10.         if (xssfSheet == null) {  
  11.             return null;  
  12.         }  
  13.         ArrayList<String[]> list = new ArrayList<String[]>();  
  14.         int lastRowNum = xssfSheet.getLastRowNum();  
  15.         for (int rowNum = startRow; rowNum <= lastRowNum; rowNum++) {  
  16.             if (xssfSheet.getRow(rowNum) != null) {  
  17.                 Row xssfRow = xssfSheet.getRow(rowNum);  
  18.                 short firstCellNum = xssfRow.getFirstCellNum();  
  19.                 short lastCellNum = xssfRow.getLastCellNum();  
  20.                 if (firstCellNum != lastCellNum) {  
  21.                     String[] values = new String[lastCellNum];  
  22.                     for (int cellNum = firstCellNum; cellNum < lastCellNum; cellNum++) {  
  23.                         Cell xssfCell = xssfRow.getCell(cellNum);  
  24.                         if (xssfCell == null) {  
  25.                             values[cellNum] = "";  
  26.                         } else {  
  27.                             values[cellNum] = parseExcel(xssfCell);  
  28.                         }  
  29.                     }  
  30.                     list.add(values);  
  31.                 }  
  32.             }  
  33.         }  
  34.         return list;  
  35.     }  

 

 2、Excel資料處理:

Excel儲存日期、時間均以數實值型別進行儲存,讀取時POI先判斷是是否是數實值型別,再進行判斷轉化

1、數值格式(CELL_TYPE_NUMERIC):

1.純數值格式:getNumericCellValue() 直接擷取資料

2.日期格式處理yyyy-MM-dd, d/m/yyyy h:mm, HH:mm 等不含文字的日期格式

1).判斷是否是日期格式:HSSFDateUtil.isCellDateFormatted(cell)

2).判斷是日期或者時間

cell.getCellStyle().getDataFormat() == HSSFDataFormat.getBuiltinFormat("h:mm")

OR: cell.getCellStyle().getDataFormat() == HSSFDataFormat.getBuiltinFormat("yyyy-MM-dd")

3.自訂日期格式處理yyyy年m月d日,h時mm分,yyyy年m月等含文字的日期格式

判斷cell.getCellStyle().getDataFormat()值,解析數值格式

yyyy年m月d日----->31

m月d日---->58

h時mm分--->32

2、字元格式設定(CELL_TYPE_STRING):直接擷取內容

 

Java代碼  
  1. private String parseExcel(Cell cell) {  
  2.         String result = new String();  
  3.         switch (cell.getCellType()) {  
  4.         case HSSFCell.CELL_TYPE_NUMERIC:// 數字類型  
  5.             if (HSSFDateUtil.isCellDateFormatted(cell)) {// 處理日期格式、時間格式  
  6.                 SimpleDateFormat sdf = null;  
  7.                 if (cell.getCellStyle().getDataFormat() == HSSFDataFormat  
  8.                         .getBuiltinFormat("h:mm")) {  
  9.                     sdf = new SimpleDateFormat("HH:mm");  
  10.                 } else {// 日期  
  11.                     sdf = new SimpleDateFormat("yyyy-MM-dd");  
  12.                 }  
  13.                 Date date = cell.getDateCellValue();  
  14.                 result = sdf.format(date);  
  15.             } else if (cell.getCellStyle().getDataFormat() == 58) {  
  16.                 // 處理自訂日期格式:m月d日(通過判斷儲存格的格式id解決,id的值是58)  
  17.                 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");  
  18.                 double value = cell.getNumericCellValue();  
  19.                 Date date = org.apache.poi.ss.usermodel.DateUtil  
  20.                         .getJavaDate(value);  
  21.                 result = sdf.format(date);  
  22.             } else {  
  23.                 double value = cell.getNumericCellValue();  
  24.                 CellStyle style = cell.getCellStyle();  
  25.                 DecimalFormat format = new DecimalFormat();  
  26.                 String temp = style.getDataFormatString();  
  27.                 // 儲存格設定成常規  
  28.                 if (temp.equals("General")) {  
  29.                     format.applyPattern("#");  
  30.                 }  
  31.                 result = format.format(value);  
  32.             }  
  33.             break;  
  34.         case HSSFCell.CELL_TYPE_STRING:// String類型  
  35.             result = cell.getRichStringCellValue().toString();  
  36.             break;  
  37.         case HSSFCell.CELL_TYPE_BLANK:  
  38.             result = "";  
  39.         default:  
  40.             result = "";  
  41.             break;  
  42.         }  
  43.         return result;  
  44.     }  

 

 *萬能處理方案

所有日期格式都可以通過getDataFormat()值來判斷

yyyy-MM-dd----- 14

yyyy年m月d日--- 31

yyyy年m月------- 57

m月d日  ---------- 58

HH:mm----------- 20

h時mm分  ------- 32

 

Java代碼  
  1. //1、判斷是否是數值格式  
  2. if(cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC){  
  3.     short format = cell.getCellStyle().getDataFormat();  
  4.     SimpleDateFormat sdf = null;  
  5.     if(format == 14 || format == 31 || format == 57 || format == 58){  
  6.         //日期  
  7.         sdf = new SimpleDateFormat("yyyy-MM-dd");  
  8.     }else if (format == 20 || format == 32) {  
  9.         //時間  
  10.         sdf = new SimpleDateFormat("HH:mm");  
  11.     }  
  12.     double value = cell.getNumericCellValue();  
  13.     Date date = org.apache.poi.ss.usermodel.DateUtil.getJavaDate(value);  
  14.     result = sdf.format(date);  
  15. }  

 

POI對Excel自訂日期格式的讀取

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.