本文提供一種可靠的方法,使用C#從NTP服務器檢索當前日期和時間。以下是涉及的步驟和完整的代碼解決方案。
此方法依賴於網絡時間協議(NTP),它涉及向NTP服務器發送查詢消息。服務器會回复包含當前時間的回复消息。然後,我們從回復中提取時間並將其轉換為可用的格式。
<code class="language-csharp">using System; using System.Net; using System.Net.Sockets; public static class NTP { public static DateTime GetNetworkTime() { const string ntpServer = "time.windows.com"; const int ntpPort = 123; byte[] ntpData = new byte[48]; ntpData[0] = 0x1B; // LI = 0, VN = 3, Mode = 3 (Client) using (var socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp)) { socket.Connect(new IPEndPoint(Dns.GetHostEntry(ntpServer).AddressList[0], ntpPort)); socket.Send(ntpData); socket.Receive(ntpData); } const int serverReplyTime = 40; ulong intPart = BitConverter.ToUInt32(ntpData, serverReplyTime); ulong fractPart = BitConverter.ToUInt32(ntpData, serverReplyTime + 4); intPart = SwapEndianness(intPart); fractPart = SwapEndianness(fractPart); long milliseconds = (long)(intPart * 1000) + (long)((fractPart * 1000) / 0x100000000L); DateTime networkDateTime = new DateTime(1900, 1, 1, 0, 0, 0, DateTimeKind.Utc).AddMilliseconds(milliseconds); return networkDateTime.ToLocalTime(); } private static ulong SwapEndianness(ulong x) { return (ulong)( ((x & 0x000000ff) << 24) | ((x & 0x0000ff00) << 8) | ((x & 0x00ff0000) >> 8) | ((x & 0xff000000) >> 24) ); } }</code>
使用此代碼,您可以輕鬆查詢NTP服務器並獲取當前日期和時間。此解決方案處理字節序轉換,並提供了一種靈活的方式來從任何兼容的NTP服務器檢索時間。 注意代碼中SwapEndianness
函數的修正,以確保正確的字節序轉換。
以上是如何使用C#查詢當前日期和時間的NTP服務器?的詳細內容。更多資訊請關注PHP中文網其他相關文章!