15

私はJava 8
これを使用していZonedDateTimeます

2013-07-10T02:52:49+12:00

この値を次のように取得します

z1.format(DateTimeFormatter.ISO_OFFSET_DATE_TIME)

はどこz1ですかZonedDateTime

この値を次のように変換したかった2013-07-10T14:52:49

どうやってやるの?

4

4 に答える 4

17

これは、あなたの望むことですか?これは、yourをbefore に変換することにより、yourZonedDateTimeLocalDateTimewith a givenに変換します。ZoneIdZonedDateTimeInstant

LocalDateTime localDateTime = LocalDateTime.ofInstant(z1.toInstant(), ZoneOffset.UTC);

または、ハードコーディングされた UTC ではなく、ユーザーのシステム タイムゾーンが必要な場合もあります。

LocalDateTime localDateTime = LocalDateTime.ofInstant(z1.toInstant(), ZoneId.systemDefault());
于 2016-02-28T23:21:29.427 に答える
4

@SimMac明確にしていただきありがとうございます。私も同じ問題に直面し、彼の提案に基づいて答えを見つけることができました。

public static void main(String[] args) {
    try {
        String dateTime = "MM/dd/yyyy HH:mm:ss";
        String date = "09/17/2017 20:53:31";
        Integer gmtPSTOffset = -8;
        ZoneOffset offset = ZoneOffset.ofHours(gmtPSTOffset);

        // String to LocalDateTime
        LocalDateTime ldt = LocalDateTime.parse(date, DateTimeFormatter.ofPattern(dateTime));
        // Set the generated LocalDateTime's TimeZone. In this case I set it to UTC
        ZonedDateTime ldtUTC = ldt.atZone(ZoneOffset.UTC);
        System.out.println("UTC time with Timezone          : "+ldtUTC);

        // Convert above UTC to PST. You can pass ZoneOffset or Zone for 2nd parameter
        LocalDateTime ldtPST = LocalDateTime.ofInstant(ldtUTC.toInstant(), offset);
        System.out.println("PST time without offset         : "+ldtPST);

        // If you want UTC time with timezone
        ZoneId zoneId = ZoneId.of( "America/Los_Angeles" );
        ZonedDateTime zdtPST = ldtUTC.toLocalDateTime().atZone(zoneId);
        System.out.println("PST time with Offset and TimeZone   : "+zdtPST);

    } catch (Exception e) {
    }
}

出力:

UTC time with Timezone          : 2017-09-17T20:53:31Z
PST time without offset         : 2017-09-17T12:53:31
PST time with Offset and TimeZone   : 2017-09-17T20:53:31-08:00[America/Los_Angeles]
于 2017-12-07T00:29:16.617 に答える
2

z1が のインスタンスである場合、ZonedDateTime

z1.withZoneSameInstant(ZoneOffset.UTC).toLocalDateTime()

LocalDateTimeOP によって要求された文字列表現を持つ のインスタンスに評価されます。これを次のプログラムで示します。

import java.time.LocalDateTime;
import java.time.ZoneOffset;
import java.time.ZonedDateTime;
import java.time.temporal.ChronoUnit;

public class Main {

  public static void main(String[] args) {
    ZonedDateTime time = ZonedDateTime.now();
    ZonedDateTime truncatedTime = time.truncatedTo(ChronoUnit.SECONDS);
    ZonedDateTime truncatedTimeUtc = truncatedTime.withZoneSameInstant(ZoneOffset.UTC);
    LocalDateTime truncatedTimeUtcNoZone = truncatedTimeUtc.toLocalDateTime();

    System.out.println(time);
    System.out.println(truncatedTime);
    System.out.println(truncatedTimeUtc);
    System.out.println(truncatedTimeUtcNoZone);
  }
}

出力例:

2020-10-26T16:45:21.735836-03:00[America/Sao_Paulo]
2020-10-26T16:45:21-03:00[America/Sao_Paulo]
2020-10-26T19:45:21Z
2020-10-26T19:45:21
于 2020-10-26T20:19:21.370 に答える