- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的计算机配置的区域性为 not en-US
。
使用 native Win32 时 GetDateFormat
函数,我得到正确格式的日期:
This is correct; and is also how Windows renders it:
the taskbar
Region and Language settings
Windows Explorer
Outlook
当我尝试使用当前区域设置将日期转换为 .NET 中的字符串时,例如:
DateTime.Now.ToString();
DateTime.Now.ToString(CultureInfo.CurrentCulture);
我得到的日期不正确:
This bug in .NET is evident anyplace in Windows that uses the buggy .NET code:
Windows Event Viewer:
Task Scheduler:
SQL Server Management Studio:
如何使 .NET 没有 bug?
如何使用当前区域性(正确)将日期和时间转换为字符串?
Note: The user is allowed to set their Windows to any locale preferences they want. As it is now, my program will not handle valid settings properly. Telling the user, "Don't do that" is pretty mean-spirited.
A similar example comes from Delphi, which assumes that a date separator can never be more than one character. When Windows is configured with a locale that uses multiple characters for the date separator, e.g.:
- sk-SK (Slovak - Slovakia) :
.
where dates should be formatted as:
22. 11. 2011
the code library fails to accept a date separator longer than one character, and falls back to:
22/11/2011
In the past some might suggest that you not to bother with such edge cases. Such suggestions carry no weight with me.
i'll avoid getting into a pissing match with someone who wants to alter the meaning of my question by changing the title. But the question is not limited to pseudo-locales, specifically designed to find bugs in applications.
以下是来自世界各地的日期格式的独特列表:
特别有趣的是最后一个例子 doesn't use the gregorian calendar :
ar-SA
:29/12/32 02:03:07 dv-MV
:29/12/32 14:03:07prf-AF/ps-AF
:29/12/32 2:03:07 Ù.尽管这些都是你永远不必担心的边缘情况。
<小时/>2011 年 12 月 14 日更新:
该错误的另一个演示是 Datetime.Parse
无法解析 DateTime.ToString
:
String s = DateTime.Today.ToString("d"); //returns "14////12////2011"
DateTime d = DateTime.Parse(s); //expects "dd//MM//yyyy"
.Parse
抛出异常。
更新 02//8, 2012 09::56'12:
任何日期分隔符的使用都是不正确的,而且是不恰当的。来自 MSDN:
LOCALE_SDATE
Windows Vista and later: This constant is deprecated. Use
LOCALE_SSHORTDATE
instead. A custom locale might not have a single, uniform separator character. For example, a format such as "12/31, 2006" is valid.LOCALE_STIME
Windows Vista and later: This constant is deprecated. Use
LOCALE_STIMEFORMAT
instead. A custom locale might not have a single, uniform separator character. For example, a format such as "03:56'23" is valid.
最佳答案
此特定错误是由于一些特殊字符的转换造成的,这些特殊字符在 ShortDatePattern
等模式中未转义。
ShortDatePattern = "d//MM//yyyy";
模式中的
/
表示“插入日期分隔符”,但当字符串从系统复制到 DateTimeFormat< 时,扩展已经完成(至少在我的系统上)/
结构。遗憾的是它缺少转义(显然在任何不使用特殊字符作为分隔符的语言中都不可见,并且在英语中不可见,因为它被自身替换)
唯一的解决方案似乎是转义 DateTimeFormat
实例的所有模式中的分隔符:
var c = new System.Globalization.CultureInfo("qps-ploc", true);
c.DateTimeFormat.ShortDatePattern =
c.DateTimeFormat.ShortDatePattern.Replace("/", "'/'");
c.DateTimeFormat.LongTimePattern =
c.DateTimeFormat.LongTimePattern.Replace(":", "':'");
Console.WriteLine(DateTime.Now.ToString(c));
<小时/>
这是所有三种常见情况的完整代码示例
/// <summary>Convert a date to the short date string in the current locale (e.g. 30//11//2011)</summary>
/// <param name="value">A DateTime to be converted to a short date string</param>
/// <returns>A string containing the localized version of the date</returns>
public static String DateToStr(DateTime value)
{
String format = CultureInfo.CurrentCulture.DateTimeFormat.ShortDatePattern;
//The bug in .NET is that it assumes "/" in a date pattern means "the date separator"
//What .NET doesn't realize is that the locale strings returned by Windows are the Windows format strings.
//The bug is exposed in locale's that use two slashes as for their date separator:
// dd//MM//yyyy
// Which .NET misinterprets to give:
// 30////11////2011
// when really it should be taken literally to be:
// dd'//'MM'//'yyyy
//which is what this fix does
format = format.Replace("/", "'/'");
return value.ToString(format);
}
/// <summary>
/// Convert a time to string using the short time format in the current locale(e.g. 7::21 AM)
/// </summary>
/// <param name="value">A DateTime who's time portion will be converted to a localized string</param>
/// <returns>A string containing the localized version of the time</returns>
public static String TimeToStr(DateTime value)
{
String format = CultureInfo.CurrentCulture.DateTimeFormat.ShortTimePattern;
//The bug in .NET is that it assumes ":" in a time pattern means "the time separator"
//What .NET doesn't realize is that the locale strings returned by Windows are the Windows format strings.
//The bug is exposed in locale's that use two colons as their time separator:
// h::mm::ss tt
// Which .NET misinterprets to give:
// 11::::39::::17 AM
// when really it should be taken literally to be:
// h'::'mm'::'ss tt
//which is what this fix does
format = format.Replace(":", "':'");
return value.ToString(format);
}
/// <summary>
/// Convert a datetime to a string in the current locale (e.g. 30//11//2001 7::21 AM)
/// </summary>
/// <param name="datetime">A DateTime to be converted to a general string in the current locale</param>
/// <returns>A string containing the localized version of the datetime</returns>
public static String DateTimeToStr(DateTime datetime)
{
return DateToStr(datetime)+" "+TimeToStr(datetime);
}
关于.NET 日期到字符串在 Vista 伪文化中给出无效字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8234365/
如何以编程方式获取 Vista Edition,即 Home Basic、Home Premium、Business 或 Ultimate? 最佳答案 MSDN 给出了广泛的答案: Getting t
似乎在 Vista/Windows Server 2008 中大量使用临界区会导致操作系统无法完全恢复内存。 我们在 Delphi 应用程序中发现了这个问题,这显然是因为使用了 CS API。 (见此
我在这篇文章中读到: http://technet.microsoft.com/en-us/library/cc709628.aspx Windows 通过文件名检测安装程序,遵循这个提示,在安装程序
我创建了一个示例小工具(当然使用 google :D)。它显示“Hello World!”。 我已经创建了一个 .gadget 文件来安装这个小工具。 我编写了一个应用程序,它执行 ShellExec
当系统虚拟内存不足时,Vista 会显示对话框“关闭程序以防止信息丢失”。 在此对话框中,它命名您应该关闭的程序。人们向我报告说,它有时会命名我开发的程序。 Vista 如何决定应该关闭哪些程序?我想
我只是想知道是否有人知道 vista 在哪里存储每个用户帐户的个人资料图像。我知道在 XP 中它存储在 C:\Documents and Settings\All Users\Application
我正在将我的开发工作站从 32 位 Vista 迁移到 64 位 Vista。 生产平台为 32 位 Windows Server 和 SQL Server 2008。 有谁知道迁移代码库有任何问题?
有没有办法以编程方式禁用设备? (最好在 .net、win32 或批处理中)。 谷歌上的大多数点击都建议使用 devcon,但它似乎不适用于 Windows Vista/7 64 位。 How do
我们正在开发的产品允许用户轻松地将其设置为在计算机启动时自动运行。这很有帮助,因为该产品是我们大多数用户基本工作环境的一部分。 这个功能是在不久前实现的,有一段时间一切都很好,但是当我们开始在 Vis
存储对每个用户都相同但必须对程序可写的程序数据文件的正确位置是什么? MS Windows XP 上的等效位置是什么?我已经读到 C:\ProgramData 在普通用户安装后不可写。真的吗?如何使用
我有一个普通用户需要能够运行的应用程序,但需要管理员权限才能实际运行。 我试图让我的用户使用“以管理员身份运行”运行它的快捷方式,但这只会在他们尝试运行应用程序时导致 UAC 提示。 有没有办法以编程
我正在尝试安装 OpenCV 超过 windows vista 64x 但它显示了一个致命的错误。 我尽我所能,但它是无用的。 openCV 可以在 vista 64 上运行吗? 我该如何摆脱这个问题
我希望能够使用 mklink 在我的 Windows Vista 家庭版计算机上创建符号链接(symbolic link)。 但是,我必须先授予 SeCreateSymbolicLink,然后 mkl
Windows Vista 中 %allusersprofile% 文件夹的确切路径是什么?在某些系统上,我看到该文件夹为“c:\Users\All Users”,在某些系统上它被映射到“C:\P
我有一个 directx9 应用程序需要在禁用 Aero 的机器上运行。该应用程序以窗口模式运行。首次创建窗口时,它在单个屏幕中看起来很好。当我以跨越连接到同一图形适配器(和 GPU)的两个屏幕的方式
从桌面应用程序开发人员的角度来看,为 Windows XP 开发和为 Windows Vista 开发之间有什么区别吗? 最佳答案 用户界面 看着Windows Vista User Experien
我可以使用哪个内置(如果有)工具来确定某个 NTFS 分区的分配单元大小? 最佳答案 打开管理员命令提示符,然后执行以下命令: fsutil fsinfo ntfsinfo [your drive]
我们有一个服务可以启动一个与登录用户交互的应用程序。我们启动的应用程序始终以我们拥有凭据的特定用户身份运行。我们执行必要的操作(获取事件 session ID、logonUser、调整 token )
如果不关闭 UAC,我的 msi 安装程序无法安装在 Vista 机器上。由于我的应用程序将分发给我的客户,大约 20 台机器,并且他们不想关闭 UAC,有没有一种方法可以设置一些属性,使我的安装程序
我在网上搜索了很多关于这个问题的答案:他们说这是真的,SBCL 在 Vista 下不工作。但我真的需要在我的家用 Vista 笔记本电脑上使用 lisp,而 VM 真的没有帮助......而CL因为速
我是一名优秀的程序员,十分优秀!