c# Internet时间服务器同步

2009-02-02 17:48 8226人阅读 评论(2) 收藏 举报

需要用到的名空间

  1. using System.Net;
  2. using System.Net.Sockets;
  3. using System.Runtime.InteropServices;

建立一个结构

  1. public struct SystemTime
  2. {
  3. public ushort wYear;
  4. public ushort wMonth;
  5. public ushort wDayOfWeek;
  6. public ushort wDay;
  7. public ushort wHour;
  8. public ushort wMinute;
  9. public ushort wSecond;
  10. public ushort wMilliseconds;
  11. /// <summary>
  12. /// 从System.DateTime转换。
  13. /// </summary>
  14. /// <param name="time">System.DateTime类型的时间。</param>
  15. public void FromDateTime(DateTime time)
  16. {
  17. wYear = (ushort)time.Year;
  18. wMonth = (ushort)time.Month;
  19. wDayOfWeek = (ushort)time.DayOfWeek;
  20. wDay = (ushort)time.Day;
  21. wHour = (ushort)time.Hour;
  22. wMinute = (ushort)time.Minute;
  23. wSecond = (ushort)time.Second;
  24. wMilliseconds = (ushort)time.Millisecond;
  25. }
  26. /// <summary>
  27. /// 转换为System.DateTime类型。
  28. /// </summary>
  29. /// <returns></returns>
  30. public DateTime ToDateTime()
  31. {
  32. return new DateTime(wYear, wMonth, wDay, wHour, wMinute, wSecond, wMilliseconds);
  33. }
  34. /// <summary>
  35. /// 静态方法。转换为System.DateTime类型。
  36. /// </summary>
  37. /// <param name="time">SYSTEMTIME类型的时间。</param>
  38. /// <returns></returns>
  39. public static DateTime ToDateTime(SystemTime time)
  40. {
  41. return time.ToDateTime();
  42. }
  43. }

要用到Windows的API函数来设置系统时间

  1. public class Win32API
  2. {
  3. [DllImport("Kernel32.dll")]
  4. public static extern bool SetLocalTime(ref SystemTime Time);
  5. [DllImport("Kernel32.dll")]
  6. public static extern void GetLocalTime(ref SystemTime Time);
  7. }

用Socket获取Internet时间服务器上的时间

  1. public void SetInternetTime()
  2. {
  3. // 记录开始的时间
  4. DateTime startDT = DateTime.Now;
  5. //建立IPAddress对象与端口,创建IPEndPoint节点:
  6. int port = 13;
  7. string[] whost = { "5time.nist.gov", "time-nw.nist.gov", "time-a.nist.gov", "time-b.nist.gov", "tick.mit.edu", "time.windows.com", "clock.sgi.com" };
  8. IPHostEntry iphostinfo;
  9. IPAddress ip;
  10. IPEndPoint ipe;
  11. Socket c = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);//创建Socket
  12. c.ReceiveTimeout = 10 * 1000;//设置超时时间
  13. string sEX = "";// 接受错误信息
  14. // 遍历时间服务器列表
  15. foreach (string strHost in whost)
  16. {
  17. try
  18. {
  19. iphostinfo = Dns.GetHostEntry(strHost);
  20. ip = iphostinfo.AddressList[0];
  21. ipe = new IPEndPoint(ip, port);
  22. c.Connect(ipe);//连接到服务器
  23. if (c.Connected) break;// 如果连接到服务器就跳出
  24. }
  25. catch (Exception ex)
  26. {
  27. sEX = ex.Message;
  28. }
  29. }
  30. if (!c.Connected)
  31. {
  32. MessageBox.Show("时间服务器连接失败!/r错误信息:" + sEX, "系统提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
  33. return;
  34. }
  35. //SOCKET同步接受数据
  36. byte[] RecvBuffer = new byte[1024];
  37. int nBytes, nTotalBytes = 0;
  38. StringBuilder sb = new StringBuilder();
  39. System.Text.Encoding myE = Encoding.UTF8;
  40. while ((nBytes = c.Receive(RecvBuffer, 0, 1024, SocketFlags.None)) > 0)
  41. {
  42. nTotalBytes += nBytes;
  43. sb.Append(myE.GetString(RecvBuffer, 0, nBytes));
  44. }
  45. //关闭连接
  46. c.Close();
  47. string[] o = sb.ToString().Split(' '); // 打断字符串
  48. textBox1.Text = sb.ToString();
  49. TimeSpan k = new TimeSpan();
  50. k = (TimeSpan)(DateTime.Now - startDT);// 得到开始到现在所消耗的时间
  51. DateTime SetDT = Convert.ToDateTime(o[1] + " " + o[2]).Subtract(-k);// 减去中途消耗的时间
  52. //处置北京时间 +8时
  53. SetDT = SetDT.AddHours(8);
  54. //转换System.DateTime到SystemTime
  55. SystemTime st = new SystemTime();
  56. st.FromDateTime(SetDT);
  57. //调用Win32 API设置系统时间
  58. Win32API.SetLocalTime(ref st);
  59. MessageBox.Show("时间已同步", "系统提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
  60. }

这个东西是收集网上的一些做法再修改了一下

用vs2008+windows xp sp2测试通过

但是始终会有±1秒的误差,但大部分误差在1秒以下,尚可接受

使用的名空间包括vs自己添加的,windows Form中用到的那部分

如果换了环境,可作相应修改

转载:http://blog.csdn.net/zhengxia19/article/details/3858910

上一篇:mysql获取当前时间,前一天,后一天


下一篇:使用 IntraWeb (6) - 页面模板: TIWLayoutMgrHTML、TIWTemplateProcessorHTML