如何将 aDateTime
从返回的本地时区转换为DateTime.Now
Utc 以外的另一个时区。在桌面上我们有TimeZoneInfo.ConvertTimeBySystemTimeZoneId()
,但在 windows phone 上不可用!
这个java片段大致显示了我想要做什么
SimpleDateFormat format = new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss z", Locale.US);
TimeZone tz = TimeZone.getDefault();
format.setTimeZone(TimeZone.getTimeZone("GMT"));
str = format.format(new Date());