2023-03-31 Java jdk8以前和8 时间类练习

public class DateDemo {

    public static void main(String[] args) {

//        JDK8之前Date

// public Date()                    创建一个Date对象,代表的是系统当前此刻日期时间。

        Date date =new Date();

System.out.println(date);

// public Date(long time)          把时间毫秒值转换成Date日期对象。

        long l =System.currentTimeMillis();

Date date1 =new Date(l);

System.out.println(date1);

// public long getTime()            获取Date对象中的毫秒值

        long time =date1.getTime();

System.out.println(time);

// public void setTime(long time)    修改日期对象的时间为当前时间毫秒值对应的时间

        SimpleDateFormat sdf =new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

String time1 ="2023-11-10 23:44:23";

try {

            Date parse =sdf.parse(time1);

System.out.println(parse);

} catch (ParseException e) {

            e.printStackTrace();

}

//        SimpleDateFormat

// public SimpleDateFormat(String  pattern)        创建简单日期格式化对象,并封装时间的格式

        SimpleDateFormat sdf1 =new SimpleDateFormat("yyyy年MM月dd日 HH时mm分ss秒");

// public final String format(Date date)            将日期格式化成日期/时间字符串

        String format =sdf1.format(new Date());

System.out.println(format);

// public final String format(Object time)          将时间毫秒值式化成日期/时间字符串

        long time2 =date.getTime();

String format1 =sdf1.format(time2);

System.out.println(format1);

// public Date parse(String source)                把字符串时间解析成日期对象

        Date format2 =null;

try {

            format2 =sdf1.parse("2012年6月20日 13时24分30秒");

} catch (ParseException e) {

            e.printStackTrace();

}

        System.out.println(format2);

//                Calendar

// public  static Calendar getInstance()    获取当前日历对象

        Calendar calendar =Calendar.getInstance();

// public int get(int field)    获取日历中的某个信息。

        int YEAR =calendar.get(Calendar.YEAR);

int MONTH =calendar.get(Calendar.MONTH);

int DAY_OF_MONTH =calendar.get(Calendar.DAY_OF_MONTH);

System.out.println(YEAR+"--"+MONTH+"---"+DAY_OF_MONTH);

// public final Date getTime()      获取日期对象。

        Date time3 =calendar.getTime();

// public long getTimeInMillis()    获取时间毫秒值

        long timeInMillis =calendar.getTimeInMillis();

// public void set(int field,int value)      修改日历的某个信息。

        calendar.set(Calendar.YEAR,2024);

System.out.println(calendar.get(Calendar.YEAR));

// public void add(int field,int amount)    为某个信息增加/减少指定的值

        calendar.add(Calendar.YEAR,2);

System.out.println(calendar.get(Calendar.YEAR));

//        JDK8

//        LocalDate,LocalTime,LocalDateTime 对象的获取

// public static Xxxx now(): 获取系统当前时间对应的该对象

        LocalDate localDate =LocalDate.now();

LocalTime localTime =LocalTime.now();

LocalDateTime localDateTime =LocalDateTime.now();

// public static Xxxx of(…):获取指定时间的对象

        LocalDate localDate1 =LocalDate.of(2021,10,10);

LocalTime localTime1 =LocalTime.of(14,54,21);

LocalDateTime localDateTime1 =LocalDateTime.of(2021,10,10,14,54,21);

//                LocalDate

// public int geYear()                                      获取年

        LocalDate localDate2 =LocalDate.now();

int year =localDate2.getYear();

System.out.println(year);

// public int getMonthValue()                              获取月份(1-12)

        int monthValue =localDate.getMonthValue();

System.out.println(monthValue);

// public int getDayOfMonth()                              获取日

        int dayOfYear =localDate.getDayOfMonth();

System.out.println(dayOfYear);

// public int getDayOfYear()                                获取当前是一年中的第几天

        System.out.println(localDate.getDayOfYear());

// public DayOfWeek getDayOfWeek()    获取星期几:ld.getDayOfWeek().getValue()

        int value =localDate.getDayOfWeek().getValue();

System.out.println(value);

// withYear、withMonth、withDayOfMonth、withDayOfYear        直接修改某个信息,返回新日期对象

        LocalDate localDate3 =localDate.withYear(1998).withMonth(11).withDayOfMonth(28).withDayOfYear(220);

System.out.println(localDate3);

int year1 =localDate3.getYear();

System.out.println(year1);

// plusYears、plusMonths、plusDays、plusWeeks                把某个信息加多少,返回新日期对象

        LocalDate localDate4 =localDate.plusYears(2).plusMonths(4).plusDays(10).plusWeeks(2);

System.out.println(localDate4);

// minusYears、minusMonths、minusDays,minusWeeks            把某个信息减多少,返回新日期对象

        LocalDate localDate5 =

localDate1.minusYears(1).minusMonths(1).minusDays(1).minusWeeks(2);

System.out.println(localDate5);

// equals isBefore isAfter

        boolean equals =localDate1.equals(localDate2);

System.out.println(equals);

//        LocalTime

        LocalTime lTime2 =LocalTime.now();

// public int getHour()                              获取小时

        int hour =lTime2.getHour();

System.out.println(hour);

// public int getMinute()                            获取分

        int minute =lTime2.getMinute();

System.out.println(minute);

// public int getSecond()                            获取秒

        int second =lTime2.getSecond();

System.out.println(second);

// public int getNano()                              获取纳秒

        int nano =lTime2.getNano();

System.out.println(nano);

// withHour、withMinute、withSecond、withNano          修改时间,返回新时间对象

        LocalTime localTime2 =lTime2.withHour(2).withMinute(10).withSecond(5).withNano(20);

System.out.println(localTime2);

// plusHours、plusMinutes、plusSeconds、plusNanos      把某个信息加多少,返回新时间对象

        LocalTime localTime3 =localTime2.plusHours(4).plusMinutes(20).plusSeconds(13).withNano(11);

System.out.println(localTime3);

// minusHours、minusMinutes、minusSeconds、minusNanos  把某个信息减多少,返回新时间对象

        LocalTime localTime4 =localTime3.minusHours(4).minusMinutes(2).minusSeconds(10).minusNanos(10);

System.out.println(localTime4);

// equals isBefore isAfter                            判断2个时间对象,是否相等,在前还是在后

        boolean equals1 =lTime2.equals(localTime);

System.out.println(equals1);

//                LocalDateTime

// getYear、getMonthValue、getDayOfMonth、getDayOfYear  getDayOfWeek、getHour、getMinute、getSecond、getNano获取年月日、时分秒、纳秒等

// withYear、withMonth、withDayOfMonth、withDayOfYear  withHour、withMinute、withSecond、withNano修改某个信息,返回新日期时间对象

// plusYears、plusMonths、plusDays、plusWeeks  plusHours、plusMinutes、plusSeconds、plusNanos把某个信息加多少,返回新日期时间对象

// minusYears、minusMonths、minusDays、minusWeeks  minusHours、minusMinutes、minusSeconds、minusNanos把某个信息减多少,返回新日期时间对象

// equals isBefore isAfter判断2个时间对象,是否相等,在前还是在后

        /**

        * LocalDateTime转换

          */

// public LocalDate toLocalDate()转换成一个LocalDate对象

// public LocalTime toLocalTime()转换成一个LocalTime对象

// public static LocalDateTime of(LocalDate date, LocalTime time)将LocalDate对象和LocalTime对象转换为LocalDateTime

              /*

* DateTimeFormatter

* */

// public static DateTimeFormatter ofPattern(时间格式yyyy....)      获取格式化器对象

// public String format(时间对象)                                  格式化时间

        /*

        *LocalDateTime,LocalTime,LocalDate提供的使用DateTimeFormatter的方法* */

// public String format(DateTimeFormatter formatter)                        格式化时间

// public static LocalDateTime parse(CharSequence text, DateTimeFormatter formatter)解析

        /*

Period

*/

// public static Period between(LocalDate start, LocalDate end) 传入2个日期对象,得到Period对象

// public  int getYears()      计算隔几年,并返回

// public  int getMonths()      计算隔几个月,年返回

// public  int getDays()        计算隔多少天,并返回

                /*

Duration

*/

// public  static Duration between(开始时间对象1,截止时间对象2)    传入2个时间对象,得到Duration对象

// public  long toDays()                                        计算隔多少天,并返回

// public  long toHours()                                      计算隔多少小时,并返回

// public  long toMinutes()                                    计算隔多少分,并返回

// public  long toSeconds()                                    计算隔多少秒,并返回

// public  long toMillis()                                      计算隔多少毫秒,并返回

// public  long toNanos()                                      计算隔多少纳秒,并返回

        /*

* ZoneId

* */

// public static Set<String>  getAvailableZoneIds() 获取Java中支持的所有时区

// public static ZoneId systemDefault()            获取系统默认时区

// public static ZoneId of(String zoneId)          获取一个指定时区

                /*

* ZoneDateTime

* */

// public static ZonedDateTime now()            获取当前系统时区的ZonedDateTime对象

// public static ZonedDateTime now(ZoneId zone) 获取指定时区的ZonedDateTime对象

// getYear、getMonthValue、getDayOfMonth、getDayOfYeargetDayOfWeek、getHour、getMinute、getSecond、getNano获取年月日、时分秒、纳秒等

// public ZonedDateTime withXxx(时间)                修改时间系列的方法

// public ZonedDateTime minusXxx(时间)                减少时间系列的方法

// public ZonedDateTime plusXxx(时间)                增加时间系列的方法

    }

}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,718评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,683评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,207评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,755评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,862评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,050评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,136评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,882评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,330评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,651评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,789评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,477评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,135评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,864评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,099评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,598评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,697评论 2 351

推荐阅读更多精彩内容