How do I display a date with a custom timezone?

后端 未结 4 1283
闹比i
闹比i 2021-02-13 09:28

Lets say I have a string that represents a date that looks like this:

\"Wed Jul 08 17:08:48 GMT 2009\"

So I parse that string into a date object like this:

4条回答
  •  别跟我提以往
    2021-02-13 09:51

    The modern way is with the java.time classes.

    ZonedDateTime

    Specify a formatting pattern to match your input string. The codes are similar to SimpleDateFormat but not exactly. Be sure to read the class doc for DateTimeFormatter. Note that we specify a Locale to determine what human language to use for name of day-of-week and name of month.

    String input = "Wed Jul 08 17:08:48 GMT 2009";
    DateTimeFormatter f = DateTimeFormatter.ofPattern ( "EEE MMM dd HH:mm:ss z uuuu" , Locale.ENGLISH );
    ZonedDateTime zdt = ZonedDateTime.parse ( input , f );
    

    zdt.toString(): 2009-07-08T17:08:48Z[GMT]

    We can adjust that into any other time zone.

    Specify a proper time zone name in the format of continent/region. Never use the 3-4 letter abbreviation such as CDT or EST or IST as they are not true time zones, not standardized, and not even unique(!).

    I will guess that by CDT you meant a time zone like America/Chicago.

    ZoneId z = ZoneId.of( "America/Chicago" );
    ZonedDateTime zdtChicago = zdt.withZoneSameInstant( z );
    

    zdtChicago.toString() 2009-07-08T12:08:48-05:00[America/Chicago]

    Instant

    Generally best to work in UTC. For that extract an Instant. The Instant class represents a moment on the timeline in UTC with a resolution of nanoseconds (up to nine (9) digits of a decimal fraction).

    This Instant class is a basic building-block class of java.time. You can think of ZonedDateTime as an Instant plus a ZoneId.

    Instant instant = zdtChicago.toInstant();
    

    instant.toString(): 2009-07-08T17:08:48Z


    About java.time

    The 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, & java.text.SimpleDateFormat.

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

    To learn more, see the Oracle Tutorial. And search Stack Overflow for many examples and explanations. Specification is JSR 310.

    Where to obtain the java.time classes?

    • Java SE 8 and SE 9 and later
      • Built-in.
      • Part of the standard Java API with a bundled implementation.
      • Java 9 adds some minor features and fixes.
    • Java SE 6 and SE 7
      • Much of the java.time functionality is back-ported to Java 6 & 7 in ThreeTen-Backport.
    • Android
      • The ThreeTenABP project adapts ThreeTen-Backport (mentioned above) for Android specifically.
      • See How to use….

    The 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.

提交回复
热议问题