设置自己的区域性或更改日期时间的当前区域性
本文关键字:区域性 时间 日期 自己的 设置 | 更新日期: 2023-09-27 18:34:45
我正在尝试在我的项目中设置自定义区域性。但是我有一些问题,我已经搜索了谷歌并找到了以下代码。但是我有一些问题,请在评论中观察。
using System;
using System.IO;
using System.Globalization;
public class Example
{
public static void Main()
{
// Persist the date and time data.
StreamWriter sw = new StreamWriter(@".'DateData.dat");
// Create a DateTime value.
DateTime dtIn = DateTime.Now;
// Retrieve a CultureInfo object.
CultureInfo invC = CultureInfo.InvariantCulture;
// Convert the date to a string and write it to a file.
sw.WriteLine(dtIn.ToString("r", invC));//what r mean?. if r is the custem culture variabel then how we determin it.
sw.Close();
// Restore the date and time data.
StreamReader sr = new StreamReader(@".'DateData.dat");
String input;
while ((input = sr.ReadLine()) != null)
{
Console.WriteLine("Stored data: {0}'n" , input);
// Parse the stored string.
DateTime dtOut = DateTime.Parse(input, invC, DateTimeStyles.RoundtripKind);
// Create a French (France) CultureInfo object.
CultureInfo frFr = new CultureInfo("fr-FR");
// Displays the date formatted for the "fr-FR" culture.
Console.WriteLine("Date formatted for the {0} culture: {1}" ,
frFr.Name, dtOut.ToString("f", frFr));// f?
// Creates a German (Germany) CultureInfo object.
CultureInfo deDe= new CultureInfo("de-De");
// Displays the date formatted for the "de-DE" culture.
Console.WriteLine("Date formatted for {0} culture: {1}" ,
deDe.Name, dtOut.ToString("f", deDe));
}
sr.Close();
}
}
下面是一个链接,显示了 DateTime.ToString(( 方法的许多格式值。我没有看到提到小写的"r",但您的代码输出似乎与"R"或"r"相同。
http://msdn.microsoft.com/en-us/library/zdtaw1bw.aspx
写入文件的 DateTime 值将基于任何区域性更改之前的固定区域性。你把它写出来,然后你把它读回来,然后再得到一些新的文化信息。
我不得不猜测你在问什么,因为除了代码之外,任何地方都没有问题。如果我误解了您的问题,请提供更多细节。
也许如果您要显示输出,它会有所帮助。
啊,这里有一个链接,实际上说"r"与"R"相同。所以现在你有关于你问题的那部分的文档:
http://msdn.microsoft.com/en-us/library/az4se3k1.aspx