Windows服务无法获得正确的系统文化

时间:2014-10-20 20:17:02

标签: c# .net cultureinfo currentculture

从“控制面板”中,我将“区域和语言”设置设置为“法语(法国)”

当我将我的应用程序作为控制台应用程序运行时,

Thread.CurrentThread.CurrentCulture返回法语

但是,当我将其作为Windows服务运行时,它会返回不变文化或英语(美国)

有没有办法解决这个问题?

2 个答案:

答案 0 :(得分:8)

该服务可能是以拥有自己文化的用户身份运行的。

为什么不在开始服务时设置文化

Thread.CurrentThread.CurrentCulture = new CultureInfo("fr-FR");
Thread.CurrentThread.CurrentUICulture = new CultureInfo("fr-FR");

同样来自Default Culture in a Windows Service

If your Windows Service is running under the SYSTEM account or other account without a 
profile it will use the settings defined under the 
"HKEY_USERS/.DEFAULT/Control Panel/International" registry key.  

You can change these values from "Control Panel / Regional and Language Options / Advanced" 
by checking the checkbox "Apply all settings to the current user account and to the default 
user profile".

我通常使用前一种技术,因为我只需要为特定服务而不是整个操作系统更改它。

答案 1 :(得分:0)

.NET 4.5添加了CultureInfo.DefaultThreadCurrentCultureCultureInfo.DefaultThreadCurrentUICulture我建议尽早设置它,它应该可以解决您的问题。 这将更改当前线程文化和所有创建的线程。