我正在尝试使用Windows GetDateFormat API函数格式化日期:
nResult = GetDateFormat(
localeId, //0x409 for en-US, or LOCALE_USER_DEFAULT if you're not testing
0, //flags
dt, //a SYSTEMTIME structure
"M/d/yyyy", //the format we require
null, //the output buffer to contain string (null for now while we get the length)
0); //the length of the output buffer (zero while we get the length)
现在我们传递一个日期/时间:
SYSTEMTIME dt;
dt.wYear = 1600;
dt.wMonth = 12;
dt.wDay = 31;
在这种情况下,nResult返回零:
如果不成功,该函数返回0。要获取扩展错误信息,应用程序可以调用GetLastError,它可以返回以下错误代码之一:
- ERROR_INSUFFICIENT_BUFFER。提供的缓冲区大小不够大,或者错误地设置为NULL。
- ERROR_INVALID_FLAGS。为标志提供的值无效。
- ERROR_INVALID_PARAMETER。任何参数值都无效。
但是,如果我在一天之后返回日期:
SYSTEMTIME dt;
dt.wYear = 1601;
dt.wMonth = 1;
dt.wDay = 1;
然后它有效。
我做错了什么?我如何格式化日期?
e.g。 the birth of Christ的日期:
12/25/0000
或the date when the universe started:
-10/22/4004 6:00 PM
或凯撒去世的日期:
-3/15/44
答案 0 :(得分:2)
这实际上是对SystemTime的限制。
...year/month/day/hour/minute/second/milliseconds value since 1 January 1601 00:00:00 UT... to 31 December 30827 23:59:59.999
我花了一些时间来查找如何解决此限制,但由于GetDateFormat()
需要SystemTime
,您可能需要咬紧牙关并编写自己的format()
方法。
答案 1 :(得分:1)
SYSTEMTIME struct仅在1601年到3082年之间有效,因为在Windows机器中,系统时间是从1.1.1601 00:00的经过时间间隔开始计算的。看到 Wikipedia文章。