如何检查当前时间是否在美国时区

本文关键字:是否 时间 美国 时区 何检查 检查 | 更新日期: 2023-09-27 18:28:29

我可以使用DateTime time = DateTime.Now;获得当前时间,但我想将此时间与TimeZoneInfo进行比较,以获得与美国提供的UTC偏移量相同的时间。

基本上,我想知道提供的时间在与美国相关的六个时区之一(包括夏威夷和阿拉斯加)内。

如何检查当前时间是否在美国时区

这应该会得到您想要的,并作为如何获得其他时区的示例。

class Program
{
    static void PrintTime(string timeZoneId)
    {
        Console.WriteLine( 
            TimeZoneInfo.ConvertTimeBySystemTimeZoneId(DateTime.UtcNow, 
                timeZoneId).ToShortTimeString() +
            " is the time in " + timeZoneId);
    }
    public static void Main()
    {
        PrintTime("Hawaiian Standard Time");
        PrintTime("Alaskan Standard Time");
        PrintTime("Pacific Standard Time");
        PrintTime("US Mountain Standard Time");
        PrintTime("Central Standard Time");
        PrintTime("US Eastern Standard Time");
    }
}

听起来你已经知道自己需要什么了。

var currentTime = DateTime.Now();返回当前系统时间。

var zone = TimeZoneInfo.Local;将为您提供当前系统时区。然后,您只需要将时区与美国的时区进行比较(标准(冬季)时间为UTC-5到UTC-10,夏令时为UTC-4到UTC-110。

然而,看看你的评论,仅仅因为时间在美国的某个时区内并不意味着它在美国。北美和南美有很多国家都有相同的时区。

如果我了解你的问题,你可以从互联网上获得。您可以检查下面的功能。

        DateTime DT = GetNISTDate(true);
        MessageBox.Show(DT.ToString());
    public static DateTime GetNISTDate(bool convertToLocalTime)
    {
        Random ran = new Random(DateTime.Now.Millisecond);
        DateTime date = DateTime.Today;
        string serverResponse = string.Empty;
        // Represents the list of NIST servers  
        string[] servers = new string[] {  
                     "64.90.182.55",  
                     "206.246.118.250",  
                     "207.200.81.113",  
                     "128.138.188.172",  
                     "64.113.32.5",  
                     "64.147.116.229",  
                     "64.125.78.85",  
                     "128.138.188.172" 
                      };
        // Try each server in random order to avoid blocked requests due to too frequent request
        for (int i = 0; i < 5; i++)
        {
            try
            {
                // Open a StreamReader to a random time server  
                StreamReader reader = new StreamReader(new System.Net.Sockets.TcpClient(servers[ran.Next(0, servers.Length)], 13).GetStream());
                serverResponse = reader.ReadToEnd();
                reader.Close();
                // Check to see that the signiture is there  
                if (serverResponse.Length > 47 && serverResponse.Substring(38, 9).Equals("UTC(NIST)"))
                {
                    // Parse the date  
                    int jd = int.Parse(serverResponse.Substring(1, 5));
                    int yr = int.Parse(serverResponse.Substring(7, 2));
                    int mo = int.Parse(serverResponse.Substring(10, 2));
                    int dy = int.Parse(serverResponse.Substring(13, 2));
                    int hr = int.Parse(serverResponse.Substring(16, 2));
                    int mm = int.Parse(serverResponse.Substring(19, 2));
                    int sc = int.Parse(serverResponse.Substring(22, 2));
                    if (jd > 51544)
                        yr += 2000;
                    else
                        yr += 1999;
                    date = new DateTime(yr, mo, dy, hr, mm, sc);
                    // Convert it to the current timezone if desired  
                    if (convertToLocalTime)
                        date = date.ToLocalTime();
                    // Exit the loop  
                    break;
                }
            }
            catch
            {
                /* Do Nothing...try the next server */
            }
        }
        return date;
    }