C# 当前系统时间获取及时间格式详解
C#当前系统时间获取及时间格式
最近学习C#的知识,对获取系统时间和时间格式进行了总结,这是本文在网上整理的详细资料,大家看下!
--DateTime数字型 System.DateTimecurrentTime=newSystem.DateTime(); 取当前年月日时分秒currentTime=System.DateTime.Now; 取当前年int年=currentTime.Year; 取当前月int月=currentTime.Month; 取当前日int日=currentTime.Day; 取当前时int时=currentTime.Hour; 取当前分int分=currentTime.Minute; 取当前秒int秒=currentTime.Second; 取当前毫秒int毫秒=currentTime.Millisecond;(变量可用中文) 取中文日期显示——年月日时分stringstrY=currentTime.ToString("f");//不显示秒 取中文日期显示_年月stringstrYM=currentTime.ToString("y"); 取中文日期显示_月日stringstrMD=currentTime.ToString("m"); 取当前年月日,格式为:2003-9-23stringstrYMD=currentTime.ToString("d"); 取当前时分,格式为:14:24stringstrT=currentTime.ToString("t"); DateTime.Now.ToString();//获取当前系统时间完整的日期和时间 DateTime.Now.ToLongDateString();//只显示日期xxxx年xx月xx日,一个是长日期 DateTime.Now.ToShortDateString();//只显示日期xxxx-xx-xx一个是短日期 //今天DateTime.Now.Date.ToShortDateString(); //昨天的DateTime.Now.AddDays(-1).ToShortDateString(); //明天的DateTime.Now.AddDays(1).ToShortDateString(); //本周(注意这里的每一周是从周日始至周六止) DateTime.Now.AddDays(Convert.ToDouble((0-Convert.ToInt16(DateTime.Now.DayOfWeek)))).ToShortDateString(); DateTime.Now.AddDays(Convert.ToDouble((6-Convert.ToInt16(DateTime.Now.DayOfWeek)))).ToShortDateString(); //上周,上周就是本周再减去7天 DateTime.Now.AddDays(Convert.ToDouble((0-Convert.ToInt16(DateTime.Now.DayOfWeek)))-7).ToShortDateString(); DateTime.Now.AddDays(Convert.ToDouble((6-Convert.ToInt16(DateTime.Now.DayOfWeek)))-7).ToShortDateString(); //下周本周再加上7天 DateTime.Now.AddDays(Convert.ToDouble((0-Convert.ToInt16(DateTime.Now.DayOfWeek)))+7).ToShortDateString(); DateTime.Now.AddDays(Convert.ToDouble((6-Convert.ToInt16(DateTime.Now.DayOfWeek)))+7).ToShortDateString(); //本月本月的第一天是1号,最后一天就是下个月一号再减一天。 DateTime.Now.Year.ToString()+DateTime.Now.Month.ToString()+"1";//第一天 DateTime.Parse(DateTime.Now.Year.ToString()+DateTime.Now.Month.ToString()+"1").AddMonths(1).AddDays(-1).ToShortDateString();//最后一天 另一种方法: DateTimenow=DateTime.Now; DateTimed1=newDateTime(now.Year,now.Month,1);//本月第一天 DateTimed2=d1.AddMonths(1).AddDays(-1);//本月最后一天 PS: DateTime.Now.DayOfWeek.ToString();//英文星期显示,Wednesday (int)DateTime.Now.DayOfWeek数字,若是周三,结果对应为3 DateTime.Now.ToString("dddd",newSystem.Globalization.CultureInfo("zh-cn"));//中文星期显示 DateTime.Now.ToString("dddd");//中文星期显示 DateTime.Now.ToString("dddd,MMMM,dd,yyyy",newSystem.Globalization.DateTimeFormatInfo());//显示日期格式Friday,July,01,2009 DateTime.Now.ToString("dddd,ddMMMM,yyyy")//输出星期三,30一月,2008 出处:http://msdn.microsoft.com/zh-cn/vstudio/bb762911(VS.95).aspx,如何:从特定日期中提取星期几
datetime类型在tostring()format的格式设置
参数format格式详细用法
格式字符关联属性/说明
dShortDatePattern
DLongDatePattern
f完整日期和时间(长日期和短时间)
FFullDateTimePattern(长日期和长时间)
g常规(短日期和短时间)
G常规(短日期和长时间)
m、MMonthDayPattern
r、RRFC1123Pattern
s使用当地时间的SortableDateTimePattern(基于ISO8601)
tShortTimePattern
TLongTimePattern
uUniversalSortableDateTimePattern用于显示通用时间的格式
U使用通用时间的完整日期和时间(长日期和长时间)
y、YYearMonthPattern
下表列出了可被合并以构造自定义模式的模式。这些模式是区分大小写的
d月中的某一天。一位数的日期没有前导零。
dd月中的某一天。一位数的日期有一个前导零。
ddd周中某天的缩写名称,在AbbreviatedDayNames中定义。
dddd周中某天的完整名称,在DayNames中定义。
M月份数字。一位数的月份没有前导零。
MM月份数字。一位数的月份有一个前导零。
MMM月份的缩写名称,在AbbreviatedMonthNames中定义。
MMMM月份的完整名称,在MonthNames中定义。
y不包含纪元的年份。如果不包含纪元的年份小于10,则显示不具有前导零的年份。
yy不包含纪元的年份。如果不包含纪元的年份小于10,则显示具有前导零的年份。
yyyy包括纪元的四位数的年份。
gg时期或纪元。如果要设置格式的日期不具有关联的时期或纪元字符串,则忽略该模式。
h12小时制的小时。一位数的小时数没有前导零。
hh12小时制的小时。一位数的小时数有前导零。
H24小时制的小时。一位数的小时数没有前导零。
HH24小时制的小时。一位数的小时数有前导零。
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!