日历格式问题

时间:2010-06-16 07:33:37

标签: java date calendar

我们正在搜索有关如何格式化java.util.Calendar实例的信息,以及有关从使用java.util.Date到java.util.Calendar的转换的更多一般信息和编码提示。

最好的, 菲尔

2 个答案:

答案 0 :(得分:3)

我的提示不是使用DateCalendar。请改用Joda Time。它比内置类更好,很多。 JSR-310有望最终将Joda-like带入主库,但目前Joda是你最好的选择。

如果必须坚持Date / Calendar,请参阅java.text.DateFormatjava.text.SimpleDateFormat。请记住,它们不是线程安全的:(

答案 1 :(得分:2)

java.time

java.util 日期时间 API 及其格式化 API SimpleDateFormat 已过时且容易出错。建议完全停止使用它们并切换到 modern Date-Time API*

另外,下面引用的是来自 home page of Joda-Time 的通知:

<块引用>

请注意,从 Java SE 8 开始,要求用户迁移到 java.time (JSR-310) - JDK 的核心部分,取代了该项目。

使用 java.time(现代日期时间 API)的解决方案:

如果您从某个 API 获取 java.util.Date 的对象,您的第一步应该是使用 Date#toInstant 将其转换为 Instant,后者可以转换为其他类型的现代 Date-时间 API。

使用现代日期时间 API 的演示:

import java.time.Instant;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.OffsetDateTime;
import java.time.ZoneId;
import java.time.ZoneOffset;
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Locale;

public class Main {
    public static void main(String[] args) {
        Instant instant = Instant.now();
        System.out.println(instant);

        ZonedDateTime zdtUtc = instant.atZone(ZoneId.of("Etc/UTC"));
        System.out.println(zdtUtc);
        ZonedDateTime zdtNewYork = instant.atZone(ZoneId.of("America/New_York"));
        System.out.println(zdtNewYork);

        // Fixed offset
        OffsetDateTime odtUtc = instant.atOffset(ZoneOffset.UTC);
        System.out.println(odtUtc);
        OffsetDateTime odtWithOffset0530Hours = instant.atOffset(ZoneOffset.of("+05:30"));
        System.out.println(odtWithOffset0530Hours);

        // OffsetDateTime from ZonedDateTime
        OffsetDateTime odtNewYork = zdtNewYork.toOffsetDateTime();
        System.out.println(odtNewYork);

        // LocalDate in New York
        LocalDate todayNewYork = zdtNewYork.toLocalDate();
        System.out.println(todayNewYork);
        // Alternatively
        System.out.println(LocalDate.now(ZoneId.of("America/New_York")));

        // LocalDateTime in New York
        LocalDateTime nowNewYork = zdtNewYork.toLocalDateTime();
        System.out.println(nowNewYork);
        // Alternatively
        System.out.println(LocalDateTime.now(ZoneId.of("America/New_York")));

        // Formatted output
        DateTimeFormatter dtf = DateTimeFormatter.ofPattern("EEE MMMM dd HH:mm:ss z uuuu", Locale.ENGLISH);
        System.out.println(dtf.format(zdtNewYork));
    }
}

输出:

2021-07-14T19:22:13.544911Z
2021-07-14T19:22:13.544911Z[Etc/UTC]
2021-07-14T15:22:13.544911-04:00[America/New_York]
2021-07-14T19:22:13.544911Z
2021-07-15T00:52:13.544911+05:30
2021-07-14T15:22:13.544911-04:00
2021-07-14
2021-07-14
2021-07-14T15:22:13.544911
2021-07-14T15:22:13.586971
Wed July 14 15:22:13 EDT 2021

ONLINE DEMO

Trail: Date Time 了解有关现代 Date-Time API 的更多信息。

一些使用 java.time API 的有用答案:

  1. 查看 this answerthis answer 以了解如何将 java.time API 与 JDBC 结合使用。
  2. How to use ParsePostion
  3. Timezone conversion
  4. SimpleDateFormat does not handle fraction-of-second beyond three digits in the millisecond part correctly
  5. How to convert LocalDate to ZonedDateTime
  6. 'Z' is not the same as Z
  7. Day-of-month with ordinal
  8. The standard library does not support a formatted Date-Time object
  9. Never use SimpleDateFormat or DateTimeFormatter without a Locale
  10. How to check if timestamp (epoch time) is of today's or yesterday's

* 出于任何原因,如果您必须坚持使用 Java 6 或 Java 7,您可以使用 ThreeTen-Backport,它将大部分 java.time 功能向后移植到 Java 6 & 7. 如果您正在为 Android 项目工作并且您的 Android API 级别仍然不符合 Java-8,请检查 Java 8+ APIs available through desugaringHow to use ThreeTenABP in Android Project