SimpleDateFormat——格式化时间类
格式化
Date —— String
解析
String ——Date
构造方法:
SimpleDateFormat():使用默认的模式进行对象的构造
SimpleDateFormat(String pattern):使用指定的模式进行的对象构建
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = new Date();
String s = sdf.format(date);
Date d = sdf.parse("2019-12-12 11:34:23");
其他方法待学习后总结。。。。。
浙公网安备 33010602011771号