(copy)C#时间日期操作

时间:2021-12-02 07:40:43

copy to:http://www.cnblogs.com/loveme123/archive/2012/06/27/2565547.html

 一、C# 日期格式

  1. DateTime dt = DateTime.Now;
  2. dt.ToString();//2005-11-5 13:21:25
  3. dt.ToFileTime().ToString();//127756416859912816
  4. dt.ToFileTimeUtc().ToString();//127756704859912816
  5. dt.ToLocalTime().ToString();//2005-11-5 21:21:25
  6. dt.ToLongDateString().ToString();//2005年11月5日
  7. dt.ToLongTimeString().ToString();//13:21:25
  8. dt.ToOADate().ToString();//38661.5565508218
  9. dt.ToShortDateString().ToString();//2005-11-5
  10. dt.ToShortTimeString().ToString();//13:21
  11. dt.ToUniversalTime().ToString();//2005-11-5 5:21:25
  12. dt.Year.ToString();//2005
  13. dt.Date.ToString();//2005-11-5 0:00:00
  14. dt.DayOfWeek.ToString();//Saturday
  15. dt.DayOfYear.ToString();//309
  16. dt.Hour.ToString();//13
  17. dt.Millisecond.ToString();//441
  18. dt.Minute.ToString();//30
  19. dt.Month.ToString();//11
  20. 22. dt.Second.ToString();//28
  21. 23. dt.Ticks.ToString();//632667942284412864
  22. 24. dt.TimeOfDay.ToString();//13:30:28.4412864
  23. 25. dt.ToString();//2005-11-5 13:47:04
  24. dt.AddYears(1).ToString();//2006-11-5 13:47:04
  25. dt.AddDays(1.1).ToString();//2005-11-6 16:11:04
  26. dt.AddHours(1.1).ToString();//2005-11-5 14:53:04
  27. dt.AddMilliseconds(1.1).ToString();//2005-11-5 13:47:04
  28. dt.AddMonths(1).ToString();//2005-12-5 13:47:04
  29. dt.AddSeconds(1.1).ToString();//2005-11-5 13:47:05
  30. dt.AddMinutes(1.1).ToString();//2005-11-5 13:48:10
  31. dt.AddTicks(1000).ToString();//2005-11-5 13:47:04
  32. dt.Add(?).ToString();//问号为一个时间段
  33. dt.Equals("2005-11-6 16:11:04").ToString();//False
  34. dt.Equals(dt).ToString();//True
  35. dt.GetHashCode().ToString();//1474088234
  36. dt.GetType().ToString();//System.DateTime
  37. dt.GetTypeCode().ToString();//DateTime
  38. dt.GetDateTimeFormats('s')[0].ToString();//2005-11-05T14:06:25
  39. dt.GetDateTimeFormats('t')[0].ToString();//14:06
  40. dt.GetDateTimeFormats('y')[0].ToString();//2005年11月
  41. dt.GetDateTimeFormats('D')[0].ToString();//2005年11月5日
  42. dt.GetDateTimeFormats('D')[1].ToString();//2005 11 05
  43. dt.GetDateTimeFormats('D')[2].ToString();//星期六 2005 11 05
  44. dt.GetDateTimeFormats('D')[3].ToString();//星期六2005年11月5日
  45. dt.GetDateTimeFormats('M')[0].ToString();//11月5日
  46. dt.GetDateTimeFormats('f')[0].ToString();//2005年11月5日14:06
  47. dt.GetDateTimeFormats('g')[0].ToString();//2005-11-5 14:06
  48. dt.GetDateTimeFormats('r')[0].ToString();//Sat, 05 Nov 2005 14:06:25 GMT
  49. string.Format("{0:d}",dt);//2005-11-5
  50. string.Format("{0:D}",dt);//2005年11月5日
  51. string.Format("{0:f}",dt);//2005年11月5日14:23
  52. string.Format("{0:F}",dt);//2005年11月5日14:23:23
  53. string.Format("{0:g}",dt);//2005-11-5 14:23
  54. string.Format("{0:G}",dt);//2005-11-5 14:23:23
  55. string.Format("{0:M}",dt);//11月5日
  56. string.Format("{0:R}",dt);//Sat, 05 Nov 2005 14:23:23 GMT
  57. string.Format("{0:s}",dt);//2005-11-05T14:23:23
  58. string.Format("{0:t}",dt);//14:23
  59. string.Format("{0:T}",dt);//14:23:23
  60. string.Format("{0:u}",dt);//2005-11-05 14:23:23Z
  61. string.Format("{0:U}",dt);//2005年11月5日6:23:23
  62. string.Format("{0:Y}",dt);//2005年11月
  63. string.Format("{0}",dt);//2005-11-5 14:23:23
  64. string.Format("{0:yyyyMMddHHmmssffff}",dt);

二、日期格式模式 说明

d 月中的某一天。一位数的日期没有前导零。

dd 月中的某一天。一位数的日期有一个前导零。

ddd 周中某天的缩写名称,在 AbbreviatedDayNames 中定义。

dddd 周中某天的完整名称,在 DayNames 中定义。

M 月份数字。一位数的月份没有前导零。

MM 月份数字。一位数的月份有一个前导零。

MMM 月份的缩写名称,在 AbbreviatedMonthNames 中定义。

MMMM 月份的完整名称,在 MonthNames 中定义。

y 不包含纪元的年份。如果不包含纪元的年份小于 10,则显示不具有前导零的年份。

yy 不包含纪元的年份。如果不包含纪元的年份小于 10,则显示具有前导零的年份。

yyyy 包括纪元的四位数的年份。

gg 时期或纪元。如果要设置格式的日期不具有关联的时期或纪元字符串,则忽略该模式。

h 12 小时制的小时。一位数的小时数没有前导零。

hh 12 小时制的小时。一位数的小时数有前导零。

H 24 小时制的小时。一位数的小时数没有前导零。

HH 24 小时制的小时。一位数的小时数有前导零。

m 分钟。一位数的分钟数没有前导零。

mm 分钟。一位数的分钟数有一个前导零。

s 秒。一位数的秒数没有前导零。

ss 秒。一位数的秒数有一个前导零。

f 秒的小数精度为一位。其余数字被截断。

ff 秒的小数精度为两位。其余数字被截断。

fff 秒的小数精度为三位。其余数字被截断。

ffff 秒的小数精度为四位。其余数字被截断。

fffff 秒的小数精度为五位。其余数字被截断。

ffffff 秒的小数精度为六位。其余数字被截断。

fffffff 秒的小数精度为七位。其余数字被截断。

t 在 AMDesignator 或 PMDesignator 中定义的 AM/PM 指示项的第一个字符(如果存在)。

tt 在 AMDesignator 或 PMDesignator 中定义的 AM/PM 指示项(如果存在)。

z 时区偏移量(“+”或“-”后面仅跟小时)。一位数的小时数没有前导零。例如,太平洋标准时间是“-8”。

zz 时区偏移量(“+”或“-”后面仅跟小时)。一位数的小时数有前导零。例如,太平洋标准时间是“-08”。

zzz 完整时区偏移量(“+”或“-”后面跟有小时和分钟)。一位数的小时数和分钟数有前导零。例如,太平洋标准时间是“-08:00”。

: 在 TimeSeparator 中定义的默认时间分隔符。

/ 在 DateSeparator 中定义的默认日期分隔符。

% c 其中 c 是格式模式(如果单独使用)。如果格式模式与原义字符或其他格式模式合并,则可以省略“%”字符。

\ c 其中 c 是任意字符。照原义显示字符。若要显示反斜杠字符,请使用“\\”。

只有上面第二个表中列出的格式模式才能用于创建自定义模式;在第一个表中列出的标准格式字符不能用于创建自定义模式。

自定义模式的长度至少为两个字符;例如,

1. DateTime.ToString( "d"); // 返回 DateTime 值;“d”是标准短日期模式。

2. DateTime.ToString( "%d"); // 返回月中的某天;“%d”是自定义模式。

3. DateTime.ToString( "d "); // 返回后面跟有一个空白字符的月中的某天;“d”是自定义模式。

三、C# 常用日期处理函数

 // 计算2个日期之间的天数差

  1. DateTime dt1 = Convert.DateTime("2007-8-1");
  2. DateTime dt2 = Convert.DateTime("2007-8-15");
  3. TimeSpan span = dt2.Subtract(dt1);
  4. int dayDiff = span.Days + 1;

  // 计算某年某月的天数

  1. int days = DateTime.DaysInMonth(2007, 8);
  2. days = 31;

 // 给日期增加一天、减少一天

  1. DateTime dt =DateTime.Now;
  2. dt.AddDays(1); //增加一天
  3. dt.AddDays(-1);//减少一天

*注:以下的毫秒都采用最大997,而不是999 因为SQL SERVER的精度为3毫秒

//本月的天数

int daysInMonth = DateTime.DaysInMonth(DateTime.Now.Year, DateTime.Now.Month);

//本年的天数 是否是闰年 

int daysInYear = DateTime.IsLeapYear(DateTime.Now.Year) ? 366 : 365;

//本月第一天

DateTime firstDayInMonth = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1);

//本月的最后一天 本月1号加一个月得下月1号,再剪掉一天就是本月最后一天

DateTime lastDayInMonth = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1).AddMonths(1).AddDays(-1);

//本月最后一天的午夜

DateTime lastDayInMonth2 = new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1).AddMonths(1).AddMilliseconds(-3);

//本年第一天

DateTime firstDayInYear = new DateTime(DateTime.Now.Year, 1, 1);

//本年最后一天

DateTime lastDayInYear = new DateTime(DateTime.Now.Year, 12, 31);

//本年最后一天的午夜

DateTime lastDayInYear2 = new DateTime(DateTime.Now.Year, 12, 31, 23, 59, 59, 997);

//得到星期几 星期天为7

int dayOfWeek = Convert.ToInt32(DateTime.Now.DayOfWeek) < 1 ? 7 : Convert.ToInt32(DateTime.Now.DayOfWeek);

//本周一

DateTime monday = new DateTime(DateTime.Now.Year,DateTime.Now.Month,DateTime.Now.Day).AddDays(1 - dayOfWeek);

//本周 星期天

DateTime sunday = monday.AddDays(6);

//本周 星期天的午夜

DateTime sunday2 = monday.AddDays(7).AddMilliseconds(-3);

//本季度第一天

DateTime firsyDayInQuarter = new DateTime(DateTime.Now.Year, DateTime.Now.Month - (DateTime.Now.Month - 1) % 3, 1);

//本季度最后一天

DateTime lastDayInQuarter = firsyDayInQuarter.AddMonths(3).AddDays(-1);

//本季度最后一天的午夜

DateTime lastDayInQuarter2 = firsyDayInQuarter.AddMonths(3).AddMilliseconds(-3);

string datetime = "10-Jul-09";

string newdatetime = DateTime.Parse(datetime, new System.Globalization.CultureInfo("de-de")).ToString("yyyyMMdd");

四、C#比较两时间大小

1、比较时间大小的实验

string st1="12:13";
string st2="14:14";
DateTime dt1=Convert.ToDateTime(st1);
DateTime dt2=Convert.ToDateTime(st2);
DateTime dt3=DateTime.Now;
if(DateTime.Compare(dt1,dt2)>0)
msg.Text=st1+">"+st2;
else
msg.Text=st1+"<"+st2;
msg.Text+="\r\n"+dt1.ToString();
if(DateTime.Compare(dt1,dt3)>0)
msg.Text+="\r\n"+st1+">"+dt3.ToString();
else
msg.Text+="\r\n"+st1+"<"+dt3.ToString();

2、计算两个时间差值的函数,返回时间差的绝对值:

private string DateDiff(DateTime DateTime1,DateTime DateTime2)
{
string dateDiff=null;
try
{
TimeSpan ts1=new TimeSpan(DateTime1.Ticks);
TimeSpan ts2=new TimeSpan(DateTime2.Ticks);
TimeSpan ts=ts1.Subtract(ts2).Duration();
dateDiff=ts.Days.ToString()+"天" +ts.Hours.ToString()+"小时"+ts.Minutes.ToString()+"分钟" +ts.Seconds.ToString()+"秒";
}
catch
{
}
return dateDiff;
}

3、实现计算DateTime1-36天=DateTime2的功能

TimeSpan ts=new TimeSpan(40,0,0,0);
DateTime dt2=DateTime.Now.Subtract(ts);
msg.Text=DateTime.Now.ToString()+"-"+ts.Days.ToString()+"天\r\n"; msg.Text+=dt2.ToString();

(copy)C#时间日期操作的更多相关文章

  1. Python3 与 C&num; 面向对象之~继承与多态 Python3 与 C&num; 面向对象之~封装 Python3 与 NetCore 基础语法对比(Function专栏) &lbrack;C&num;&rsqb;C&num;时间日期操作 &lbrack;C&num;&rsqb;C&num;中字符串的操作 &lbrack;ASP&period;NET&rsqb;NTKO插件使用常见问题 我对C&num;的认知。

    Python3 与 C# 面向对象之-继承与多态   文章汇总:https://www.cnblogs.com/dotnetcrazy/p/9160514.html 目录: 2.继承 ¶ 2.1.单继 ...

  2. javascript时间日期操作

    Js获取当前日期时间及其它操作 var myDate = new Date();myDate.getYear();        //获取当前年份(2位)myDate.getFullYear();   ...

  3. C&num;时间日期操作

     一.C# 日期格式 DateTime dt = DateTime.Now; dt.ToString();//2005-11-5 13:21:25 dt.ToFileTime().ToString() ...

  4. mysql时间日期操作

    SELECT uid, SUBSTR(addtime,1,10) as 创建日期, endtime, TIMESTAMPDIFF(MINUTE, addtime, endtime) as 直播时长 f ...

  5. &lbrack;C&num;&rsqb;C&num;时间日期操作

    一.C# 日期格式 1. DateTime dt = DateTime.Now; 2. dt.ToString();//2005-11-5 13:21:25 3. dt.ToFileTime().To ...

  6. 在MYSQL中插入当前时间,就象SQLSERVER的GETDATE()一样,以及对mysql中的时间日期操作。

    在看sql教程的时候,我学的是mysql,但是教程上面的一点在mysql里面是不支持的,所以就找了其他的替代的办法 sql教程上面是这样的: 通过使用类似 GETDATE() 这样的函数,DEFAUL ...

  7. C&num;:时间日期操作(持续更新)

    1.给定时间戳返回指定的时间格式 private string StampToDate(string timeStamp,string format) { DateTime dtStart = Tim ...

  8. PHP时间日期操作增减&lpar;date strtotime&rpar; 加一天 加一月

    date_default_timezone_set('PRC'); //默认时区 //当前的时间增加5天 $date1 = "2014-11-11"; echo date('Y-m ...

  9. 深入理解Java常用类-----时间日期

    除了String这个类在日常的项目中比较常用之外,有关时间和日期的操作也是经常遇到的,本篇就讲详细介绍下Java API中对时间和日期的支持.其实在Java 8之前时间日期的API并不是很好用,以至于 ...

随机推荐

  1. 在Heroku上,安装Wordpress

    其實在 Heroku 上安裝 Wordpress 不會很難,不過閱讀之前,你可能先要知道 Heroku 與 git 的基本操作,建議可以先參考以下網站用 Heroku 架設 Wordpress 網站 ...

  2. C&num; 非UI线程对控件的控制

    第一步:定义委托 public delegate void wei(string ss); 第二步:控制UI的方法 public void get1(string ss) { richTextBox1 ...

  3. 【POJ】1056 IMMEDIATE DECODABILITY

    字典树水题. #include <cstdio> #include <cstring> #include <cstdlib> typedef struct Trie ...

  4. uva 10007 Count the Trees

    http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&p ...

  5. 前端制作中,IE6还有必要兼容吗?

    国内市场对IE 6~7支持还有一定需求,但对于一个前端开发者,我们应该去推动这个行业向前发展,而不是一味迁就.妥协. 曾经,能够提供支持老版本 IE 是一个前端开发者的必备技能.随着移动互联网大潮来临 ...

  6. 在Netbeans上配置Android开发环境

    在NetBeans下开发Android的所需要的基本条件:NetBeans(包含JDK)+Android SDK+NBAndroid(为Netbeans设计的Android 开发插件) 详情:http ...

  7. Yii中DataProvider的使用

    1,DataProvider 什么是数据提供者 数据提供者可以获取数据,并提供给其他组件或页面使用 可以获得列的数据进行分页和排序 经常用来给数据小部件提供数据,方便用户互动地进行数据的分页与排序 实 ...

  8. 【API】开机自启动- ActiveX启动

    一 学习目标 这是一段远程控制木马开机启动的代码,主要使用了ActiveX方式启动.结合自己的理解重新整理了笔记.而作为编程新手入门的自己决定要开始梳理学习目的和订下学习的目标.从今天开始要坚持做到 ...

  9. RabbitMq install on Centos

    安装服务(root) erlang官方安装说明:https://www.erlang-solutions.com/resources/download.html step 1: 安装erlang的yu ...

  10. cf-Round542-Div2-B(贪心)

    题目链接:http://codeforces.com/contest/1130/problem/B 思路: 贪心题.定义结构体数组a,a[i].x[0],a[i].x[1]分别表示i出现的第一个下标和 ...