unity常用的DateTime输出
/// <summary>
/// 计算时差
/// </summary>
void CalculateTimeDifference()
{
DateTime dt1 = new DateTime(2007, 8, 1);
DateTime dt2 = new DateTime(2007, 8, 15);
TimeSpan span = dt2.Subtract(dt1);
Debug.Log(span.Days); //返回天数差
Debug.Log(span.Hours); //返回天数差中的小时数
Debug.Log(span.Seconds); //返回天数差中的秒数
Debug.Log(span.TotalSeconds); //返回开始时间到结束时间的总秒数
}
/// <summary>
/// 格式化输出
/// </summary>
void FormatOutput()
{
DateTime dt = DateTime.Now;
dt.GetDateTimeFormats('s')[0].ToString();//2008-11-05T14:06:25
dt.GetDateTimeFormats('t')[0].ToString();//14:06
dt.GetDateTimeFormats('y')[0].ToString();//2005年11月
dt.GetDateTimeFormats('D')[0].ToString();//2005年11月5日
dt.GetDateTimeFormats('D')[1].ToString();//2005 11 05
dt.GetDateTimeFormats('D')[2].ToString();//星期六 2005 11 05
dt.GetDateTimeFormats('D')[3].ToString();//星期六 2005年11月5日
dt.GetDateTimeFormats('M')[0].ToString();//11月5日
dt.GetDateTimeFormats('f')[0].ToString();//2005年11月5日 14:06
dt.GetDateTimeFormats('g')[0].ToString();//2005-11-5 14:06
dt.GetDateTimeFormats('r')[0].ToString();//Sat, 05 Nov 2005 14:06:25 GMT
Debug.Log(dt.ToString("d"));//短日期:2021/9/13
Debug.Log(dt.ToString("D"));//长日期:2021年9月13日
Debug.Log(dt.ToString("f"));//完整短日期/时间:2021年9月13日 17:17
Debug.Log(dt.ToString("F"));//完整长日期/时间:2021年9月13日 17:17:07
Debug.Log(dt.ToString("g"));//常规短日期/时间:2021/9/13 17:17
Debug.Log(dt.ToString("G"));//常规长日期/时间:2021/9/13 17:17:07
Debug.Log(dt.ToString("R"));//日期时间:Mon, 13 Sep 2021 17:17:07 GMT
Debug.Log(dt.ToString("s"));//可排序日期:2021-09-13T17:17:07
Debug.Log(dt.ToString("t"));//短时间:17:17
Debug.Log(dt.ToString("T"));//长时间:17:17:07
Debug.Log(dt.ToString("u"));//通用可排序日期/时间:2021-09-13 17:17:07Z
Debug.Log(dt.ToString("U"));//通用完整日期/时间:2021年9月13日 9:17:07
Debug.Log(dt.ToString("Y"));//年月:2021年9月
Debug.Log(dt.ToString("M"));//月日:9月13日
Debug.Log(dt.ToString("yyyy"));//年
Debug.Log(dt.ToString("MM"));//月
Debug.Log(dt.ToString("dd"));//日
Debug.Log(dt.ToString("hh"));//时
Debug.Log(dt.ToString("mm"));//分
Debug.Log(dt.ToString("ss"));//秒
}
/// <summary>
/// 时间类输出
/// </summary>
void TimeBasedOutput()
{
Debug.Log(DateTime.Now);//当前本地时间 (年月日时分秒) -- 04/08/2020 14:06:48
Debug.Log(DateTime.UtcNow);//当前世界时间 (年月日时分秒) -- 04/08/2020 06:08:58
Debug.Log(DateTime.Now.Year);//当前时间 (年)
Debug.Log(DateTime.Now.Month);//当前时间 (月)
Debug.Log(DateTime.Now.Day);//当前时间 (日)
Debug.Log(DateTime.Now.Hour);//当前时间 (时)
Debug.Log(DateTime.Now.Minute);//当前时间 (分)
Debug.Log(DateTime.Now.Second);//当前时间 (秒)
Debug.Log(DateTime.Now.AddDays(1));//后一天时间 04/09/2020 14:06:48
Debug.Log(DateTime.Now.Date);//当前零点时间 00:00:00
Debug.Log(DateTime.Compare(DateTime.Now, DateTime.Now));//时间比较
Debug.Log(DateTime.DaysInMonth(2021, 9));//获取某年某月的天数
Debug.Log(DateTime.IsLeapYear(2021));//判断是否是闰年
Debug.Log(DateTime.Parse("2021年9月13日 16:04:42"));//格式化字符串
Debug.Log(DateTime.SpecifyKind(DateTime.Now, DateTimeKind.Unspecified));//指定格式
//实例化DateTime类
DateTime testTime = new DateTime(2021, 9, 13);
testTime.ToLocalTime();
Debug.Log(testTime.ToLocalTime());//本地时间
Debug.Log(testTime.DayOfWeek);//返回星期的数值
Debug.Log(testTime.Date);//获取日期
Debug.Log(testTime.AddDays(1));//添加天数
string weekstr = DateTime.Now.DayOfWeek.ToString();
switch (weekstr)
{
case "Monday": txtWeekstr.text = "周一"; break;
case "Tuesday": txtWeekstr.text = "周二"; break;
case "Wednesday": txtWeekstr.text = "周三"; break;
case "Thursday": txtWeekstr.text = "周四"; break;
case "Friday": txtWeekstr.text = "周五"; break;
case "Saturday": txtWeekstr.text = "周六"; break;
case "Sunday": txtWeekstr.text = "周日"; break;
}
}