0

我在网络上有一个 Windows 应用程序,可以在该网络的多个位置执行,但问题是,它取决于日期和时间。

我是否有可能使用 IP 或任何其他方式从服务器获取 DateTime?所以我可以保持相同的日期和时间。

4

1 回答 1

0

尝试实现以下>>

public static DateTime GetNistTime()
{
    DateTime dt = DateTime.MinValue;

    HttpWebRequest req = (HttpWebRequest)WebRequest.Create("http://....");
    req.Method = "GET";
    req.Accept = "text/html, application/xhtml+xml, */*";
    req.UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)";
    req.CachePolicy = new RequestCachePolicy(RequestCacheLevel.NoCacheNoStore); //No caching
    HttpWebResponse res = (HttpWebResponse)req.GetResponse();
    if (res.StatusCode == HttpStatusCode.OK)
    {
        StreamReader st = new StreamReader(res.GetResponseStream());
        string html = st.ReadToEnd().ToUpper();
        string time = Regex.Match(html, @">\d+:\d+:\d+<").Value; //HH:mm:ss format
        string date = Regex.Match(html, @">\w+,\s\w+\s\d+,\s\d+<").Value; //dddd, MMMM dd, yyyy
        dt= DateTime.Parse((date + " " + time).Replace(">", "").Replace("<", ""));
    }

    return dt;
}
于 2013-03-23T06:54:13.277 回答