私はJava 8
これを使用していZonedDateTime
ます
2013-07-10T02:52:49+12:00
この値を次のように取得します
z1.format(DateTimeFormatter.ISO_OFFSET_DATE_TIME)
はどこz1
ですかZonedDateTime
。
この値を次のように変換したかった2013-07-10T14:52:49
どうやってやるの?
私はJava 8
これを使用していZonedDateTime
ます
2013-07-10T02:52:49+12:00
この値を次のように取得します
z1.format(DateTimeFormatter.ISO_OFFSET_DATE_TIME)
はどこz1
ですかZonedDateTime
。
この値を次のように変換したかった2013-07-10T14:52:49
どうやってやるの?
これは、あなたの望むことですか?これは、yourをbefore に変換することにより、yourZonedDateTime
をLocalDateTime
with a givenに変換します。ZoneId
ZonedDateTime
Instant
LocalDateTime localDateTime = LocalDateTime.ofInstant(z1.toInstant(), ZoneOffset.UTC);
または、ハードコーディングされた UTC ではなく、ユーザーのシステム タイムゾーンが必要な場合もあります。
LocalDateTime localDateTime = LocalDateTime.ofInstant(z1.toInstant(), ZoneId.systemDefault());
@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]
z1
が のインスタンスである場合、ZonedDateTime
式
z1.withZoneSameInstant(ZoneOffset.UTC).toLocalDateTime()
LocalDateTime
OP によって要求された文字列表現を持つ のインスタンスに評価されます。これを次のプログラムで示します。
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