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

时间:2012-11-09 12:55:08

标签: delphi delphi-xe2 tdatetime formatdatetime

此代码应该在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;

任何提示?

2 个答案:

答案 0 :(得分:17)

你有两个问题

  1. 您不能将WhiteSpace用作DateSeparator,因为解析字符串的内部例程使用此字符来确定字符串的日期和时间部分。

  2. 当月份部分使用mmm字符串时StrToDateTime函数不起作用,这在QC 23301

  3. 中报告

答案 1 :(得分:17)

如果要转换一些特殊的DateTime-Formats,最好使用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( '', Now, FmtStngs );
    d := VarToDateTime( s );
end;