org.joda.time时间库的使用

1.添加maven依赖

            <dependency>
                <groupId>joda-time</groupId>
                <artifactId>joda-time</artifactId>
                <version>2.9.4</version>
            </dependency>

2.以下列举了本人平时常用的一些操作(还有很多功能不一一列举)

    public static void main(String[] args) {
        String time = "2019-11-11 00:00:00";
        String format = "yyyy-MM-dd HH:mm:ss";
        //获取当前天
        DateTime now = DateTime.now();

        //获取时间戳
        Long timesTemp = now.getMillis();

        //将时间格式字符串转为改时间对象
        DateTime activityTime = DateTime.parse(time, DateTimeFormat.forPattern(format));

        //将时间对象转为某种字符串格式
        String formatTime = activityTime.toString(format);

        //往后推天、小时、分钟等
        DateTime plusDay = now.plusDays(1);
        DateTime plusHours = now.plusHours(2);

        //往前推天、小时、分钟等
        DateTime minusDay = now.minusDays(1);
        DateTime minusHours = now.minusHours(2);

        //获取当前天的"0"点
        DateTime nowZeroTime = now.withTimeAtStartOfDay();

        //时间戳转 DateTime对象
        DateTime newDateTime = new DateTime(1547785369669L);

        //DateTime 转为 java.util.Date
        Date date = newDateTime.toDate();

    }

3.java8对时间的处理

https://blog.csdn.net/wsywb111/article/details/79815481

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值