LocalDateTime 的使用

该博客展示了Java中LocalDateTime、LocalDate和LocalTime的使用,包括获取当前时间、日期加减操作以及时间格式化的例子。通过DateTimeFormatter将日期时间格式化为字符串,并输出了年、月、日、时、分、秒等详细信息。
摘要由CSDN通过智能技术生成
        LocalDateTime ltd = LocalDateTime.now(); // 年月日时分秒
        LocalDate ltd1 = LocalDate.now(); // 年月日
        LocalTime ltd2  = LocalTime.now();// 时分秒

        DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss");
        String format = dateTimeFormatter.format(ltd);

        LocalDateTime localDateTime = ltd.plusDays(1); // 加一天
        String format1 = dateTimeFormatter.format(localDateTime);


        System.out.println("格式化前 "+ltd);
        System.out.println("格式化后 "+format);

        System.out.println("一天后 "+localDateTime);
        System.out.println("格式化后一天后 "+format1);

		System.out.println(ltd1);
        System.out.println(ltd2);

        System.out.println("年"+ltd.getYear());
        System.out.println("月"+ltd.getMonth()); // 英文 年
        System.out.println("月"+ltd.getMonthValue()); // 中文 月
        System.out.println("日"+ltd.getDayOfMonth());
        System.out.println("时"+ltd.getHour());
        System.out.println("分"+ltd.getMinute());
        System.out.println("分"+ltd.getSecond());

打印结果:
格式化前 2022-04-15T13:03:52.986
格式化后 2022-04-15 01:03:52
一天后 2022-04-16T13:03:52.986
格式化后一天后 2022-04-16 01:03:52
2022-04-15
13:03:52.986
年2022
月APRIL
月4
日15
时13
分3
分52
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值