목차
접기
728x90
반응형
// 데이트 포맷
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
switch (cell.getCellType()) {
case HSSFCell.CELL_TYPE_FORMULA:
str = cell.getCellFormula();
break;
case HSSFCell.CELL_TYPE_NUMERIC:
if (HSSFDateUtil.isInternalDateFormat(cell.getCellStyle().getDataFormat())) {
str = sdf.format(cell.getDateCellValue());
} else { // 기타
str = cell.getNumericCellValue() + "";
}
break;
case HSSFCell.CELL_TYPE_STRING:
str = cell.getStringCellValue() + "";
break;
case HSSFCell.CELL_TYPE_BLANK:
value = cell.getBooleanCellValue() + "";
str;
case HSSFCell.CELL_TYPE_ERROR:
str = cell.getErrorCellValue() + "";
break;
}
참고 사이트
728x90
반응형
LIST
'Java' 카테고리의 다른 글
현재 날짜 구하기(예시 : 년월) (0) | 2022.01.20 |
---|---|
java 한글, 숫자, 영문자 정규식 참고 (0) | 2022.01.19 |
POI 엑셀 라이브러리 style 적용 Tip !! (0) | 2022.01.15 |
외부 API 호출하는 방법 제일 기초(외부 API 호출) (0) | 2022.01.06 |
java file download (0) | 2021.11.15 |