下个月的第一天使用 java Joda-Time

First day of next month with java Joda-Time(下个月的第一天使用 java Joda-Time)
本文介绍了下个月的第一天使用 java Joda-Time的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

你会如何用 org.joda.time 包重写下面的方法,它返回下个月的第一天/joda-time/" rel="noreferrer">Joda-Time?

How would you rewrite the method below, which returns the first day of next month, with the org.joda.time package in Joda-Time?

public static Date firstDayOfNextMonth() {
    Calendar nowCal = Calendar.getInstance();
    int month = nowCal.get(Calendar.MONTH) + 1;
    int year = nowCal.get(Calendar.YEAR);

    Calendar cal = Calendar.getInstance();
    cal.clear();
    cal.set(Calendar.YEAR, year);
    cal.set(Calendar.MONTH, month);
    cal.set(Calendar.DAY_OF_MONTH, 1);
    Date dueDate = new Date(cal.getTimeInMillis());

    return dueDate;
}

推荐答案

   LocalDate today = new LocalDate();
   LocalDate d1 = today.plusMonths(1).withDayOfMonth(1);

更容易和更清洁,不是吗?:-)

A little easier and cleaner, isn't it? :-)

更新:如果你想返回一个日期:

Update: If you want to return a date:

return new Date(d1.toDateTimeAtStartOfDay().getMillis());

但我强烈建议您避免将纯 DATE 类型(即日历中的一天,没有时间信息)与 DATETIME 类型混合,特别是与可怕的 java.util.Date 一样的物理"日期时间类型 .这有点像从整数和浮点类型转换,你必须小心.

but I strongly advise you to avoid mixing pure DATE types (i.e. a day in the calendar, without time information) with DATETIME types, specially with a "physical" datetime type as is the hideous java.util.Date . It's somewhat like converting from-to integer and floating types, you must be careful.

这篇关于下个月的第一天使用 java Joda-Time的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Month is not printed from a date - Java DateFormat(月份不是从日期打印的 - Java DateFormat)
java get week of year for given a date(java获取给定日期的一年中的一周)
Get the number of days, weeks, and months, since Epoch in Java(获取自 Java 中的 Epoch 以来的天数、周数和月数)
Is there a good way to get the date of the coming Wednesday?(有什么好方法可以得到即将到来的星期三的日期吗?)
Calendar view for Android GingerBread and before (APIlt;11)(Android GingerBread 及之前的日历视图 (API11))
How to save and retrieve Date in SharedPreferences(如何在 SharedPreferences 中保存和检索日期)