时间格式转换

时间格式转换

一、 字符串转换成时间戳格式。

	String time= "2019-03";
	
	//创建SimpleDateFormat并设置时间格式
	SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM");
	Date dateTime = null;
	try {
	    //将以上格式的的字符串endTime转换成时间
	    dateTime = simpleDateFormat.parse(time);
	} catch (Exception e) {
	    e.printStackTrace();
	}
	System.out.println("dateTime=="+dateTime);

二、 时间戳格式转换成固定格式的字符串

	Date date = new Date();
	System.out.println("时间戳格式date==="+date);
	SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
	String dateTime = simpleDateFormat.format(date);
	System.out.println("字符串格式dateTime==="+dateTime);

你可能感兴趣的:(java)