14

我希望以下代码能够工作:

program Project3;

{$APPTYPE CONSOLE}

{$R *.res}

uses
  System.SysUtils;

var
  FS: TFormatSettings;

const
  DF = 'yyyymmdd';

begin
  try
   WriteLn(FormatDateTime(DF, Now));

   FS := TFormatSettings.Create;
   FS.ShortDateFormat := DF;
   WriteLn(StrToDate('20121219', FS));

   ReadLn;
  except
    on E: Exception do
      Writeln(E.ClassName, ': ', E.Message);
  end;
end.

为什么会抛出异常,说“20121219”不是有效日期?这不正是通过 TFormatSettings 应该做的吗?

4

1 回答 1

20

StrToDate() 需要在 FS.DateSeparator 中定义的分隔符: Char; 所以不能为空。

参考: http ://docwiki.embarcadero.com/Libraries/XE3/en/System.SysUtils.StrToDate

于 2012-12-19T21:46:32.243 回答