使用format方法将日期转换为字符串或字符串转换日期

时间:2025-04-01 07:50:10

package ;
import ;
import ;
public class SimpleDateFormatDemo {
    public static void main(String[] args) {
        Date currentTime = new Date();
        (currentTime);    // Mon Feb 18 13:53:50 CST 2019

      SimpleDateFormat sdf1 = new SimpleDateFormat("yyyyMMddHHmmss");
        SimpleDateFormat simpleDateFormat1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:");
        SimpleDateFormat simpleDateFormat2 = new SimpleDateFormat("yyyy-MM-dd");
        SimpleDateFormat simpleDateFormat3 = new SimpleDateFormat("yyyy/MM/dd");
        ((currentTime));  // 输出2019-02-18 13:53:50.629
        ((currentTime));  // 输出2019-02-18
        ((currentTime));  // 输出2019/02/18
    }
}

字符串转换日期:

public class SimpleDateFormatDemo {
    public static void main(String[] args) {
        try {

           //首先定义格式
            SimpleDateFormat simpleDateFormat1 = new SimpleDateFormat("yyyy-MM-dd HH:mm");
            String strDate1 = "2019-02-18 13:58";

            //按格式进行转换
            Date date1 = (strDate1);
            (date1);
        } catch (ParseException e) {
            ();
        }
    }
}