Date 时间 日期 常用方法函数
Posted zhaozilongcjiajia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Date 时间 日期 常用方法函数相关的知识,希望对你有一定的参考价值。
1、描述:Date类型转化为String类型.
@param date the dateo
@param format 类型如 yyyy-MM-dd HH:mm:ss
public static String getStringByFormat(Date date, String format) { SimpleDateFormat mSimpleDateFormat = new SimpleDateFormat(format); String strDate = null; try { strDate = mSimpleDateFormat.format(date); } catch (Exception e) { e.printStackTrace(); } return strDate; }
2、获取当前时间
pattern 类型 yyyy-MM-dd HH:mm:ss
public static String getCurrentDate(String pattern) { SimpleDateFormat formatter = new SimpleDateFormat(pattern); Date curDate = new Date(System.currentTimeMillis());// 获取当前时间 String timestamp = formatter.format(curDate); return timestamp; }
3、String转为Date
strTime要转换的string类型的时间,formatType要转换的格式yyyy-MM-dd HH:mm:ss//yyyy年MM月dd日
HH时mm分ss秒
strTime的时间格式必须要与formatType的时间格式相同
public static Date stringToDate(String checktime, String formatType) throws ParseException { SimpleDateFormat formatter = new SimpleDateFormat(formatType); Date date = null; date = formatter.parse(checktime); return date; }
以上是关于Date 时间 日期 常用方法函数的主要内容,如果未能解决你的问题,请参考以下文章