如何从Java中的日历对象构建天,月,年的列表?

前端之家收集整理的这篇文章主要介绍了如何从Java中的日历对象构建天,月,年的列表? 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想为表单构建一个日期小部件,该表单具有选择的月,日,年列表.由于列表根据月份和年份而有所不同,因此我无法将其硬编码为31天. (例如2月有28天而不是30或31天,甚至还有29天)
如何使用日历或joda对象为我建立这些列表.

最佳答案
我强烈建议您避免使用Java中内置的日期和时间API.

相反,请使用Joda Time.该库类似于(希望如此)将其装入Java 7的库,并且比内置API使用起来更令人愉快.

现在,您是否想知道特定月份的天数是一个基本问题?

编辑:这是代码(带有示例):

import org.joda.time.*;
import org.joda.time.chrono.*;

public class Test   
{
    public static void main(String[] args)
    {        
        System.out.println(getDaysInMonth(2009,2));
    }

    public static int getDaysInMonth(int year,int month)
    {
        // If you want to use a different calendar system (e.g. Coptic)
        // this is the code to change.
        Chronology chrono = ISOChronology.getInstance();
        DateTimeField dayField = chrono.dayOfMonth();        
        LocalDate monthDate = new LocalDate(year,month,1);
        return dayField.getMaximumValue(monthDate);
    }
}
原文链接:https://www.f2er.com/java/533018.html

猜你在找的Java相关文章