08SimpleDateFormat类的使用

08SimpleDateFormat类的使用

package com.commonClass;

import org.junit.Test;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

public class DateTimeTest02 {

    //jdk8之前的日期时间的API测试
    /*
    1.System类中currentTimeMills();
    2.java.util.Date和子类java.sql.Date
    3.SimpleDateFormat
    4.Calendar
     */
        /*
    SimpleDateFormat的使用:
        对日期Date类的格式化和解析
        1.两个操作:
            1.1格式化 : 日期---->字符串
            1.2解析:字符串---->日期
        2.SimpleDateFormat的实例化
     */
    @Test
    public void testSimpleDateFormat() throws ParseException {
        //实例化 SimpleDateFormat
        SimpleDateFormat sdf = new SimpleDateFormat();
        //格式化: 日期---->字符串
        Date date = new Date();
        System.out.println(date);

        String format = sdf.format(date);
        System.out.println(format);
        //解析:字符串---->日期
        String str1 = "21-3-26 下午9:40";
        Date date1 = sdf.parse(str1);
        System.out.println( date1);
        String str2 = "05-17-2021";
    // 按照指定方式进行格式化和解析:调用带参的构造器*******************************************************************
    // SimpleDateFormat sdf1 = new SimpleDateFormat("yyyyy.MMMMM.dd GGG hh:mm aaa");
        SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
        String format1 = sdf1.format(date);
        System.out.println(format1);//2021-03-27 09:59:16

        //解析:要求字符串必须是符合SimpleDateFormat识别的格式(通过构造器参数体现),否则,抛异常
        Date parse = sdf1.parse("2021-03-27 09:59:16");
        System.out.println(parse);

    }
    /*
    练习一:字符串"2021-3-27"转换为java.sql.Date
     */
    @Test
    public void exerSimpleDateFormat() throws ParseException {
        String birth = "2020-09-08";
        SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd");
        Date date = sdf1.parse(birth);//java.util.Date  Tue Sep 08 00:00:00 CST 2020
        System.out.println(date);

        java.sql.Date birthDate = new java.sql.Date(date.getTime());
        System.out.println(birthDate);//java.sql.Date 2020-09-08
    }
    /*
    练习二:"三天打鱼两天晒网" 1990-01-01开始之后的某年某月某日,在打鱼还是在晒网?
    举例:2021-03-27  ?总天数
    总天数%5 == 1,2,3时:打鱼
    总天数%5 == 0,4时:晒网
    总天数计算:
        方式一:(date2.getTime() - date1.getTime()) / (1000*60*60*24) + 1

        方式二:(1990-01-01----->2020-12-31    *365 闰年+1天+2021-01-01-----2021-03-27)/5
     */

}

上一篇:开发中时间格式的转换及SimpleDateFormat的使用


下一篇:java Date日期类型与字符串 转换