如何从互联网服务器获取国家/时区明智的日期和时间
本文关键字:日期 时间 时区 互联网 服务器 国家 获取 | 更新日期: 2023-09-27 18:33:16
我必须根据用户时区ID向用户显示日期和时间。 我不能依赖用户PC的日期时间和设置。 我正在谷歌上搜索方法,并得到了以下代码。 代码似乎会向许多外部服务器查询日期和时间,但有一件事我不清楚我可以从下面的代码中获得什么样的日期和时间。
有些时候我需要印度时间。 有时我需要伦敦时间,有时我需要其他国家当地时间。 很少有县有很多时区,这就是为什么我想发送时区 ID/名称并希望根据时区 ID/名称获取日期时间。
因此,只需指导我如何自定义以下代码,我可以在其中发送用户的侧时区 ID,即使用户 PC 日期时间设置错误,例程也会根据时区 ID 返回正确的本地时间。 寻求良好的帮助。 谢谢。
public static DateTime GetFastestNISTDate()
{
var result = DateTime.MinValue;
// Initialize the list of NIST time servers
// http://tf.nist.gov/tf-cgi/servers.cgi
string[] servers = new string[] {
"nist1-ny.ustiming.org",
"nist1-nj.ustiming.org",
"nist1-pa.ustiming.org",
"time-a.nist.gov",
"time-b.nist.gov",
"nist1.aol-va.symmetricom.com",
"nist1.columbiacountyga.gov",
"nist1-chi.ustiming.org",
"nist.expertsmi.com",
"nist.netservicesgroup.com"
};
// Try 5 servers in random order to spread the load
Random rnd = new Random();
foreach (string server in servers.OrderBy(s => rnd.NextDouble()).Take(5))
{
try
{
// Connect to the server (at port 13) and get the response
string serverResponse = string.Empty;
using (var reader = new StreamReader(new System.Net.Sockets.TcpClient(server, 13).GetStream()))
{
serverResponse = reader.ReadToEnd();
}
// If a response was received
if (!string.IsNullOrEmpty(serverResponse))
{
// Split the response string ("55596 11-02-14 13:54:11 00 0 0 478.1 UTC(NIST) *")
string[] tokens = serverResponse.Split(' ');
// Check the number of tokens
if (tokens.Length >= 6)
{
// Check the health status
string health = tokens[5];
if (health == "0")
{
// Get date and time parts from the server response
string[] dateParts = tokens[1].Split('-');
string[] timeParts = tokens[2].Split(':');
// Create a DateTime instance
DateTime utcDateTime = new DateTime(
Convert.ToInt32(dateParts[0]) + 2000,
Convert.ToInt32(dateParts[1]), Convert.ToInt32(dateParts[2]),
Convert.ToInt32(timeParts[0]), Convert.ToInt32(timeParts[1]),
Convert.ToInt32(timeParts[2]));
// Convert received (UTC) DateTime value to the local timezone
result = utcDateTime.ToLocalTime();
return result;
// Response successfully received; exit the loop
}
}
}
}
catch
{
// Ignore exception and try the next server
}
}
return result;
}
编辑
var wc = GetFastestNISTDate();
var pattern = InstantPattern.CreateWithInvariantCulture("dd/MM/yyyy HH:mm:ss");
var parseResult = pattern.Parse(wc.ToString("dd/MM/yyyy HH:mm:ss", CultureInfo.InvariantCulture));
if (!parseResult.Success)
throw new InvalidDataException("...whatever...");
var instant = parseResult.Value;
var timeZone = DateTimeZoneProviders.Tzdb["Europe/London"];
var zonedDateTime = instant.InZone(timeZone);
var bclDateTime = zonedDateTime.ToDateTimeUnspecified();
时区转换不起作用。 我从这个函数中得到了正确的日期 GetFastestNISTDate();
接下来我尝试根据我的第一个 UTC 时间获取不同时区的本地日期和时间,但代码返回了伦敦的错误时间。 我想我弄错了代码。 任何人都可以看到和帮助。
DateTime tzDateTime = TimeZoneInfo.ConvertTimeFromUtc(utcDateTime, TimeZone);
希望这有帮助。
时间服务器将报告 UTC 时间(这就是变量命名为 utcDateTime
的原因(。
result = utcDateTime.ToLocalTime();
行根据计算机所在的时区将该 UTC 时间从时间服务器转换为本地时间。如果您想要不同的时区,则需要更改该行。
正如 amit 所提到的,您可以使用 TimeZoneInfo.ConvertTimeFromUtc 转换为某个指定的时区。请参阅该页面上的示例。
TimeZoneInfo cstZone = TimeZoneInfo.FindSystemTimeZoneById("Central Standard Time");
DateTime cstTime = TimeZoneInfo.ConvertTimeFromUtc(timeUtc, cstZone);