delphi – 使用StrToDateTime和TFormatSettings进行转换不起作用

前端之家收集整理的这篇文章主要介绍了delphi – 使用StrToDateTime和TFormatSettings进行转换不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这个代码应该在Delphi XE2中工作,但它在StrtoDateTime转换中给出了“不是有效的日期和时间”错误
procedure TForm2.Button1Click(Sender: TObject);
var
  s: string;
  d: TDateTime;
  FmtStngs: TFormatSettings;
begin
    GetLocaleFormatSettings(GetThreadLocale,FmtStngs);
    FmtStngs.DateSeparator := #32;
    FmtStngs.ShortDateFormat := 'dd mmm yyyy';
    FmtStngs.TimeSeparator := ':';
    FmtStngs.LongTimeFormat := 'hh:nn';

    s := FormatDateTime('',Now,FmtStngs);
    d := StrToDateTime(s,FmtStngs);
end;

任何提示

解决方法

如果要转换一些特殊的DateTime格式,您应该更好地使用 VarToDateTime而不是StrToDateTime.只要看看两者的实现,你会认识到,StrToDateTime不知何故…而VarToDateTime会询问操作系统是否不能自己确定.

这适用于Delphi XE3(但也应该与早期版本一起使用):

procedure TForm2.Button1Click( Sender: TObject );
var
  s: string;
  d: TDateTime;
  FmtStngs: TFormatSettings;
begin
    GetLocaleFormatSettings( GetThreadLocale,FmtStngs );
    FmtStngs.DateSeparator := #32;
    FmtStngs.ShortDateFormat := 'dd mmm yyyy';
    FmtStngs.TimeSeparator := ':';
    FmtStngs.LongTimeFormat := 'hh:nn';

    s := FormatDateTime( '',FmtStngs );
    d := VarToDateTime( s );
end;
原文链接:https://www.f2er.com/delphi/102771.html

猜你在找的Delphi相关文章