Java LocalDateTime实用方法

Java8提供了新的时间接口LocalDateTime。本文主要介绍了Java8中LocalDateTime的一些常用操作方法。不多说,直接上代码。欲知详情,可以看看官网

LocalDateTime localDateTime = LocalDateTime.now();
        //时间运算,相加相减
        System.out.println(localDateTime.plusYears()); //加2年
        System.out.println(localDateTime.plusDays()); //加两天
        System.out.println(localDateTime.minusYears()); //减两年
        System.out.println(localDateTime.minusDays()); //减两天
        System.out.println(localDateTime.toString());    // 转字符串 结果:-11-24T15:36:12.914
        System.out.println(localDateTime.toLocalDate()); //获取日期(LocalDate) 结果:-11-24
        System.out.println(localDateTime.toLocalTime()); //获取时间(LocalTime) 结果::36:12.914
        System.out.println(localDateTime.getDayOfMonth()); //获取当前时间月份的第几天 结果:
        System.out.println(localDateTime.getDayOfWeek());  //获取当前周的第几天       结果:WEDNESDAY
        System.out.println(localDateTime.getDayOfYear());  //获取当前时间在该年属于第几天 结果:
        System.out.println(localDateTime.getMonthValue()); // 获取当前时间的月份(阿拉伯文) 结果:
        System.out.println(localDateTime.getMonth());      // 获取当前时间的月份(英文) 结果:
        System.out.println(localDateTime.getHour());       // 获取当前时间的小时数 结果:
        System.out.println(localDateTime.getMinute());     // 获取当前时间的分钟数 结果:

        //格式化输出
        DateTimeFormatter formatter = DateTimeFormatter.ofPattern("YYYY/MM/dd HH:mm:ss");
        System.out.println(localDateTime.format(formatter)); // 结果:/11/24 15:36:12

        //构造时间
        LocalDateTime startTime = LocalDateTime.of(, 1, 1, 20, 31, 20);
        LocalDateTime endTime = LocalDateTime.of(, 1, 3, 20, 31, 20);
        //比较时间
        System.out.println(localDateTime.isAfter(startTime)); // 结果:true
        System.out.println(localDateTime.isBefore(endTime));  // 结果:false

        //获取毫秒数(使用Instant)
        System.out.println(localDateTime.atZone(ZoneId.systemDefault()).toInstant().toEpochMilli()); // 结果:
        //获取秒数(使用Instant)
        System.out.println(localDateTime.atZone(ZoneId.systemDefault()).toInstant().getEpochSecond()); // 结果:

        // 获取当前时间的点~23点
        LocalDateTime beginDay = localDateTime.withHour().withMinute(0).withSecond(0).withNano(0);
        LocalDateTime endDay = localDateTime.withHour().withMinute(59).withSecond(59);

        // 获取本月的第一天的点0分0秒和最后一天的23点59分59秒
        LocalDateTime beginMonth = localDateTime.with(TemporalAdjusters.firstDayOfMonth()).withHour().withMinute(0).withSecond(0);
        LocalDateTime endMonth = localDateTime.with(TemporalAdjusters.lastDayOfMonth()).withHour().withMinute(59).withSecond(59);

        // LocalDateTime转Date
        Date date = Date.from(localDateTime.toInstant(ZoneOffset.of("+")));
        // Date转LocalDateTime
        date.toInstant().atOffset(ZoneOffset.of("+")).toLocalDateTime();
        // LocalDateTime获取秒数
        Long second = LocalDateTime.now().toEpochSecond(ZoneOffset.of("+"));
        // LocalDateTime获取毫秒数
        Long milliSecond = LocalDateTime.now().toInstant(ZoneOffset.of("+")).toEpochMilli();


正文到此结束
评论插件初始化中...
Loading...