java-SimpleDateFormat类
package com.day10.SimpleDateFormat;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DemoSimpleDateFormat {
/**
* @param args
* 常见对象(SimpleDateFormat类实现日期和字符串的相互转换)(掌握)
* A:DateFormat类的概述
* DateFormat 是日期/时间格式化子类的抽象类,它以与语言无关的方式格式化并解析日期或时间。是抽象类,所以使用其子类SimpleDateFormat
* B:SimpleDateFormat构造方法
* public SimpleDateFormat()
* public SimpleDateFormat(String pattern)
* C:成员方法
* public final String format(Date date)
* public Date parse(String source)
* @throws ParseException
*/
public static void main(String[] args) throws ParseException {
//DateFormat sd=new DateFormat();是抽象类,不允许实例化
DateFormat df1=DateFormat.getDateInstance();
Date d=new Date();//获取当前时间对象
SimpleDateFormat sdf=new SimpleDateFormat();//创建日期格式化类对象
System.out.println(sdf.format(d));//18-1-1 下午9:02
Date d1=new Date();
SimpleDateFormat sdf1=new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");
System.out.println(sdf1.format(d1));//2018年01月01日 21:07:36
//将时间字符串转成日期对象
String str="2000年08月08日 08:08:08";
SimpleDateFormat sdf2=new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");
Date d2=sdf2.parse(str);//将时间字符串转成日期对象
System.out.println(d2);//Tue Aug 08 08:08:08 CST 2000
}
}