我已找到答案,谢谢各位,分数照给
function ChangeInttoTime(IntTime: integer): String;
var
; MyLargeInteger:LARGE_INTEGER;
; MyFileTime:FileTime;
; MySystemTime:SystemTime;
begin
; MyLargeInteger.QuadPart:=int64(IntTime+3600*8)*int64(10000000)+116444736000000000;
; MyFileTime.dwLowDateTime:=MyLargeInteger.LowPart;
; MyFileTime.dwHighDateTime:=MyLargeInteger.HighPart;
; FileTimeToSystemTime(MyFileTime,MySystemTime);
; Result:=inttostr(MySystemTime.wYear)+'-'+inttostr(MySystemTime.wMonth)+'-'
; +inttostr(MySystemTime.wDay)+' '+inttostr(MySystemTime.wHour)+':'
; +inttostr(MySystemTime.wMinute)+':'+inttostr(MySystemTime.wSecond);
end;