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 读取出来的是一串数字,因此需要转换格式

         


三、

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


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

千码君2016

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值