1. 首页
  2. 编程语言
  3. Delphi
  4. Delphi源码分享网络服务器时间授时中心时间校对

Delphi源码分享网络服务器时间授时中心时间校对

上传者: 2023-03-11 09:55:42上传 ZIP文件 639.58KB 热度 33次
unit NetTime;

interface

uses
  Windows, SysUtils, IdSNTP, IdStack;

function GetNetTime: TDateTime;

implementation

function GetNetTime: TDateTime;
var
  IdSNTP: TIdSNTP;
begin
  IdSNTP := TIdSNTP.Create(nil);
  try
    IdSNTP.Host := 'ntp.aliyun.com'; // 阿里云公网NTP服务器
    IdSNTP.Port := IdSNTP.StandardNTPPort;
    IdSNTP.Active := True;
    Result := IdSNTP.DateTime;
  finally
    IdSNTP.Free;
  end;
end;

end.
下载地址
用户评论