java时间格式的转换以及EXCEL里面时间的读取

一、

/**
	 * @author SHUN
	 * 生成系统日期,并将其格式化返回字符串
	 * @return 
	 */
	public String generateDate(){
		  String guarantee_date = null;
		  Date generateDate = new Date();
	             DateFormat formater = new SimpleDateFormat("yyyyMMdd");
	             guarantee_date = formater.format(generateDate);
	         return guarantee_date;
	}

二、

/**
	 * @author SHUN
	 * @param cell  import org.apache.poi.ss.usermodel.Cell;
	 * 关于如何将Excel表格中的时间字符串的数字格式  转换成 格式化的时间字符串
	 * @return
	 */
	public String excelTime(Cell cell){
		  String guarantee_time = null;
	         if(DateUtil.isCellDateFormatted(cell)){
	             //用于转化为日期格式
	             Date d = cell.getDateCellValue();
//	             System.err.println(d.toString());
//	             DateFormat formater = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
	             DateFormat formater = new SimpleDateFormat("yyyyMMdd HH:mm:ss");
	             guarantee_time = formater.format(d);
	                }
	         return guarantee_time;
	}

由于excel 里面的时间格式是自定义,所以javaPOI 读取出来的是一串数字,因此需要转换格式

java时间格式的转换以及EXCEL里面时间的读取_第1张图片       java时间格式的转换以及EXCEL里面时间的读取_第2张图片  java时间格式的转换以及EXCEL里面时间的读取_第3张图片


三、

/**通过此方法再将被格式化了的时间字符串转换回标准时间类格式,再形成其他的时间
 SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMdd HH:mm:ss");
		         Date d = dateFormat.parse(excelTime(cell));
		         System.err.println(d.toString());


你可能感兴趣的:(web)