Android: 从 GregorianCalendar 对象获取年、月、日

Android: Get year, month, day from GregorianCalendar Object

GregorianCalendar 构造函数要求以下内容:

GregorianCalendar(int year, int month, int dayOfMonth);

如何从我创建的对象中提取年月日。现在我正在使用 object.YEAR、object.MONTH 和 object.DAY_OF_MONTH,但这似乎没有给我正确的数字。

谢谢。

在这里,我根据用户点击的日历日期获取日期。然后用户可以在该日期中输入一些信息,这些信息存储在以 GregorianCalendar 为键的 HashMap 中。

cal.setOnDateChangeListener(new CalendarView.OnDateChangeListener() {
            @Override
            public void onSelectedDayChange(CalendarView view, int year, int month, int dayOfMonth) {

                selectedDate = new GregorianCalendar(year, month, dayOfMonth);

这里我尝试将 GregorianCalendar 年、月、日参数中的日期写入文件以备后用。

private void writeToFile() {
        try
        {
            PrintWriter writer = new PrintWriter(file, "UTF-8");
            for (GregorianCalendar gregObject: recipes.keySet()) {
                String[] value = recipes.get(gregObject);
                int y = gregObject.YEAR;
                int m = gregObject.MONTH;
                int d = gregObject.DAY_OF_MONTH;

                writer.printf("%d %d %d ", y, m, d);

这是我从文件中读取的方式。当我从文件中读取时,我得到的年、月和日数字 1、2、5 是错误的。阅读的其余信息都是正确的。

try
            {
                Scanner getLine = new Scanner(file);
                Scanner tokenizer;

                while (getLine.hasNextLine()) {
                    String line = getLine.nextLine();
                    tokenizer = new Scanner(line);
                    System.out.println(line);

                    while (tokenizer.hasNextInt()) {
                        int y1 = tokenizer.nextInt();
                        int m1 = tokenizer.nextInt();
                        int d1 = tokenizer.nextInt();

显然我认为我错误地将年、月和日写入文件,因此我试图找出从 GregorianCalendar 对象中提取年、月和日的正确方法。

希望以下内容有所帮助:我正在使用 2015/06/10 作为输入。请注意月份值为 0(一月)- 11(十二月)。

package demo;

import java.util.Calendar;
import java.util.GregorianCalendar;

/**
 * Create on 4/3/16.
 */
public class TestCalendar {

    public static void main(String [] args){
        Calendar cal = new GregorianCalendar(2015,05,10); // Month values are 0(Jan) - 11 (Dec). So for June it is 05
        int year = cal.get(Calendar.YEAR);
        int month = cal.get(Calendar.MONTH);      // 0 - 11 
        int dayOfMonth = cal.get(Calendar.DAY_OF_MONTH);
        // Following must output 2015/06/10
        System.out.printf("Provided date is %4d/%02d/%02d", year, month+1,     dayOfMonth);
    }
}

tl;博士

  • 你太辛苦了。
  • 您使用的是麻烦的旧日期时间 classes 现在已被现代 java.time classes.

示例:

LocalDate.now().getYear()      // Better to pass a specific time zone (`ZoneId`) as optional argument: LocalDate.now( ZoneId.of( "Africa/Tunis" ) ).getYear()

2018

java.time

如果您真的只关心日期而不关心时间,请不要使用日期时间class。

LocalDate

LocalDate class 表示没有时间和时区的仅日期值。

时区对于确定日期至关重要。对于任何给定时刻,日期在全球范围内因地区而异。例如,Paris France is a new day while still “yesterday” in Montréal Québec.

午夜后几分钟

如果未指定时区,JVM 将隐式应用其当前默认时区。该默认设置可能随时更改,因此您的结果可能会有所不同。最好明确指定您的 desired/expected 时区作为参数。

指定 proper time zone name in the format of continent/region, such as America/Montreal, Africa/CasablancaPacific/Auckland。切勿使用 ESTIST 等 3-4 字母缩写,因为它们 不是 真正的时区,不是标准化的,甚至不是唯一的(!)。

ZoneId z = ZoneId.of( "America/Montreal" ) ;  
LocalDate today = LocalDate.now( z ) ;

如果你想使用 JVM 当前的默认时区,请求它并作为参数传递。如果省略,则隐式应用 JVM 的当前默认值。最好是明确的,因为默认值可能会在任何时候 在运行时 中被 JVM 中任何应用程序的任何线程中的任何代码更改。

ZoneId z = ZoneId.systemDefault() ;  // Get JVM’s current default time zone.

或指定日期。您可以通过数字设置月份,1 月至 12 月的编号为 1-12。

LocalDate ld = LocalDate.of( 1986 , 2 , 23 ) ;  // Years use sane direct numbering (1986 means year 1986). Months use sane numbering, 1-12 for January-December.

或者,更好的是,使用 Month enum objects pre-defined, one for each month of the year. Tip: Use these Month objects throughout your codebase rather than a mere integer number to make your code more self-documenting, ensure valid values, and provide type-safety

LocalDate ld = LocalDate.of( 1986 , Month.FEBRUARY , 23 ) ;

年月日部分

根据需要询问零件。

int ld.getYear() ;
int ld.getMonthValue() ;
int ld.getDayOfMonth() ;

遗留代码

如果您必须与尚未转换为 java.time 的旧代码进行互操作,您可以使用添加到旧 classes 的新方法进行转换。

GregorianCalendar 等价于 ZonedDateTime

ZonedDateTime zdt = myGregCal.toZonedDateTime() ;  // Convert from legacy class to modern class.

根据需要询问零件。

int zdt.getYear() ;
int zdt.getMonthValue() ;
int zdt.getDayOfMonth() ;

关于java.time

java.time framework is built into Java 8 and later. These classes supplant the troublesome old legacy date-time classes such as java.util.Date, Calendar, & SimpleDateFormat.

Joda-Time project, now in maintenance mode, advises migration to the java.time classes.

要了解更多信息,请参阅 Oracle Tutorial. And search Stack Overflow for many examples and explanations. Specification is JSR 310

从哪里获得java.time classes?

  • Java SE 8, Java SE 9,及以后
    • 内置。
    • 标准 Java API 的一部分,带有捆绑实施。
    • Java 9 添加了一些小功能和修复。
  • Java SE 6 and Java SE 7
  • Android
    • Android java.time classes.
    • 捆绑实施的更高版本
    • 对于较早的 Android,ThreeTenABP project adapts ThreeTen-Backport (mentioned above). See

ThreeTen-Extra project extends java.time with additional classes. This project is a proving ground for possible future additions to java.time. You may find some useful classes here such as Interval, YearWeek, YearQuarter, and more.