javapoi导⼊excel格式转换
/**
* excel⽂本转换
* @param cell
* @return
*/
public static String parseCell(Cell cell) {
String value = "";
if(null==cell){
return value;
}
switch (CellType()) {
//数值型
case Cell.CELL_TYPE_NUMERIC:
if (HSSFDateUtil.isCellDateFormatted(cell)) {
short format = CellStyle().getDataFormat();
SimpleDateFormat sdf = null;
if (format == 14 || format == 31 || format == 57 || format == 58
|| (176<=format && format<=178) || (182<=format && format<=196)
|| (210<=format && format<=213) || (208==format ) ) { // ⽇期
sdf = new SimpleDateFormat("yyyy-MM-dd");
} else if (format == 20 || format == 32 || format==183 || (200<=format && format<=209) ) { // 时间
sdf = new SimpleDateFormat("HH:mm");
} else { // 不是⽇期格式
cell.setCellType(Cell.CELL_TYPE_STRING);
RichStringCellValue().toString().trim();
//return String.NumericCellValue());这样会导致excel单元格设置为⽂本,但是存储数字的读取到的字符串为2.123E5之类的指数类型,所                }
double cellValue = NumericCellValue();
Date date = org.apache.poi.ss.JavaDate(cellValue);
if(date == null){
return "";
}
String result="";
try {
result = sdf.format(date);
} catch (Exception e) {
e.printStackTrace();
return "";
}
return result;
}else {// 纯数字
BigDecimal big=new NumericCellValue());
value = String();
//解决1234.0  去掉后⾯的.0
if(null!=value&&!"".im())){
String[] item = value.split("[.]");
if(1<item.length&&"0".equals(item[1])){
value=item[0];
}
}
}
break;
//字符串类型
java时间日期格式转换case Cell.CELL_TYPE_STRING:
value = StringCellValue().toString();
break;
// 公式类型
case Cell.CELL_TYPE_FORMULA:
//读公式计算值
value = String.NumericCellValue());
if (value.equals("NaN")) {// 如果获取的数据值为⾮法值,则转换为获取字符串
value = StringCellValue().toString();
value = StringCellValue().toString();      }
break;
// 布尔类型
case Cell.CELL_TYPE_BOOLEAN:
value = " "+ BooleanCellValue();
break;
// 空值
case Cell.CELL_TYPE_BLANK:
value = "";
break;
// 故障
case Cell.CELL_TYPE_ERROR:
value = "";
break;
default:
value = StringCellValue().toString();  }
return value;
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。