使用Nodatime将UTC时间转换为本地时间

14

我得到了一个“ddMMyyHHmmss”格式的时间,我知道这是UTC格式。我想使用NodaTime库将其转换为我的本地时区,但似乎无法弄清楚。我的本地时区目标是新西兰。

以下是我尝试过的内容:

 var pattern = LocalDateTimePattern.CreateWithInvariantCulture("ddMMyyHHmmss");

 var parseResult = pattern.Parse(utcDateTime);
 if (!parseResult.Success)
 {
     throw new InvalidDataException("Invalid time specified " + date + time);
 }

 var timeZone = DateTimeZoneProviders.Bcl["New Zealand Standard Time"];

 var zone = new ZonedDateTime(
                  localDateTime, 
                  timeZone, 
                  timeZone.GetUtcOffset(SystemClock.Instance.Now));


 return new DateTime(zone.ToInstant().Ticks);
1个回答

30
// Since your input value is in UTC, parse it directly as an Instant.
var pattern = InstantPattern.CreateWithInvariantCulture("ddMMyyHHmmss");
var parseResult = pattern.Parse("150713192900");
if (!parseResult.Success)
    throw new InvalidDataException("...whatever...");
var instant = parseResult.Value;

Debug.WriteLine(instant);  // 2013-07-15T19:29:00Z

// You will always be better off with the tzdb, but either of these will work.
var timeZone = DateTimeZoneProviders.Tzdb["Pacific/Auckland"];
//var timeZone = DateTimeZoneProviders.Bcl["New Zealand Standard Time"];

// Convert the instant to the zone's local time
var zonedDateTime = instant.InZone(timeZone);

Debug.WriteLine(zonedDateTime);
  // Local: 7/16/2013 7:29:00 AM Offset: +12 Zone: Pacific/Auckland

// and if you must have a DateTime, get it like this
var bclDateTime = zonedDateTime.ToDateTimeUnspecified();

Debug.WriteLine(bclDateTime.ToString("o"));  // 2013-07-16T07:29:00.0000000

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接