https://blog.csdn.net/cstester/article/details/7407044

  1. using System.Globalization;
  2. class CnCanlendar_nongli
  3. {
  4. /// <summary>
  5. /// 实例化一个  ChineseLunisolarCalendar
  6. /// </summary>
  7. private static ChineseLunisolarCalendar ChineseCalendar = new ChineseLunisolarCalendar();
  8. /// <summary>
  9. /// 十天干
  10. /// </summary>
  11. private static string[] tg = { "甲", "乙", "丙", "丁", "戊", "己", "庚", "辛", "壬", "癸" };
  12. /// <summary>
  13. ///  十二地支
  14. ///  </summary>
  15. private static string[] dz = { "子", "丑", "寅", "卯", "辰", "巳", "午", "未", "申", "酉", "戌", "亥" };
  16. /// <summary>
  17. /// 十二生肖
  18. /// </summary>
  19. private static string[] sx = { "鼠", "牛", "虎", "兔", "龙", "蛇", "马", "羊", "猴", "鸡", "狗", "猪" };
  20. /// <summary>
  21. ///  返回农历天干地支年
  22. ///   </summary>
  23. ///    <param name="year">农历年</param>
  24. ///    <returns></returns>
  25. public static string GetLunisolarYear(int year)
  26. {
  27. if (year > 3)
  28. {
  29. int tgIndex = (year - 4) % 10;
  30. int dzIndex = (year - 4) % 12;
  31. return string.Concat(tg[tgIndex], dz[dzIndex], "[", sx[dzIndex], "]");
  32. }
  33. throw new ArgumentOutOfRangeException("无效的年份!");
  34. }
  35. /// <summary>
  36. /// 农历月
  37. /// </summary>
  38. /// <returns></returns>
  39. private static string[] months = { "正", "二", "三", "四", "五", "六", "七", "八", "九", "十", "十一", "十二(腊)" };
  40. /// <summary>
  41. /// 农历日
  42. /// </summary>
  43. private static string[] days1 = { "初", "十", "廿", "三" };
  44. /// <summary>
  45. ///  农历日
  46. /// </summary>
  47. private static string[] days = { "一", "二", "三", "四", "五", "六", "七", "八", "九", "十" };
  48. /// <summary>
  49. /// 返回农历月
  50. /// </summary>
  51. /// <param name="month">月份</param>
  52. /// <returns></returns>
  53. public static string GetLunisolarMonth(int month)
  54. {
  55. if (month < 13 && month > 0)
  56. {
  57. return months[month - 1];
  58. }
  59. throw new ArgumentOutOfRangeException("无效的月份!");
  60. }
  61. /// <summary>
  62. /// 返回农历日
  63. /// </summary>
  64. /// <param name="day">天</param>
  65. /// <returns></returns>
  66. public static string GetLunisolarDay(int day)
  67. {
  68. if (day > 0 && day < 32)
  69. {
  70. if (day != 20 && day != 30)
  71. {
  72. return string.Concat(days1[(day - 1) / 10], days[(day - 1) % 10]);
  73. }
  74. else
  75. {
  76. return string.Concat(days[(day - 1) / 10], days1[1]);
  77. }
  78. }
  79. throw new ArgumentOutOfRangeException("无效的日!");
  80. }
  81. /// <summary>
  82. /// 根据公历获取农历日期
  83. /// </summary>
  84. /// <param name="datetime">公历日期</param>
  85. /// <returns></returns>
  86. public static string GetChineseDateTime(DateTime datetime)
  87. {
  88. //农历的年月日
  89. int year = ChineseCalendar.GetYear(datetime);
  90. int month = ChineseCalendar.GetMonth(datetime);
  91. int day = ChineseCalendar.GetDayOfMonth(datetime);
  92. //获取闰月, 0 则表示没有闰月
  93. int leapMonth = ChineseCalendar.GetLeapMonth(year);
  94. bool isleap = false;
  95. if (leapMonth > 0)
  96. {
  97. if (leapMonth == month)
  98. {
  99. //闰月
  100. isleap = true;
  101. month--;
  102. }
  103. else if (month > leapMonth)
  104. {
  105. month--;
  106. }
  107. }
  108. return string.Concat(GetLunisolarYear(year), "年", isleap ? "闰" : string.Empty, GetLunisolarMonth(month), "月", GetLunisolarDay(day));
  109. }
  110. }

C#项目获取当前时间的农历时间的更多相关文章

  1. 代码空间项目 -- 获取当前时间之前的某一天-Calender类的使用

    Calendar类的静态方法getInstance()可以初始化一个日历对象:Calendar now = Calendar.getInstance(); 1.Calendar的基本用法calenda ...

  2. js获取当前农历时间

    <template> <div class="gaia-header"> <img alt="gaia_logo" src=&qu ...

  3. ASP.NET农历时间显示(两)

    在拍摄的月球时前(http://blog.csdn.net/yysyangyangyangshan/article/details/6802950),只是没有进行封装使用起来须要手动改动. 本次进行简 ...

  4. ASP.NET如何显示农历时间

    ASP.NET如何显示农历时间 CS部分代码如下: 代码如下: public string ChineseTimeNow = "";  public string ForignTi ...

  5. 项目心得——按照指定的日期/时间创建Date对象

    项目心得——按照指定的日期/时间创建Date对象 有时,在做项目中,需要获得指定日期的Date对象,这个指定的日期或者时间可能不是当前的时间.下面讲解两种获取指定日期/时间的Date对象的方法: pa ...

  6. Java 获取当前时间及实现时间倒计时功能

    引言 在一些项目中或是一些特殊的业务场景中,需要用到显示系统的当前时间,以及一些固定的时间倒计时,时间到后做一些什么事情的业务 .接下来咱们就具体看看代码是怎么实现的: <%@ page lan ...

  7. 用PHP获取系统时间时,时间比当前时间少8个小时

    自PHP5.0开始,用PHP获取系统时间时,时间比当前时间少8个小时.原因是PHP.ini中没有设置timezone时,PHP是使用的UTC时间,所以在中国时间要少8小时. 解决办法: 1.在PHP. ...

  8. [WinAPI] API 14 [获取、设置文件属性和时间]

    >_< 为了获取文件属性,用户可以使用GetFileAttributes与GetFileAttributesEx函数. GetFileAttributesEx函数除了返回文件属性外,还返回 ...

  9. Java 获取各时区时间,获取当前时间到格林威治时间1970年01月01日00时00分00秒的秒数

    格林威治时间即UTC/GMT时间,1970年01月01日00时00分00秒(即UTC+8的北京时间1970年01月01日08时00分00秒)计算代码如下: /** * 获取指定时间到格林威治时间的秒数 ...

随机推荐

  1. NIO服务器与客户端

    这里客户端没有采用NIO形式 服务器: package com.util.Server.NIO; import javax.print.DocFlavor;import java.io.IOExcep ...

  2. 重写TreeView模板来实现数据分层展示(二)

    前面一片文章实现TreeView的基本的模板重写,那么照着这个思路,我们再来写一个稍稍复杂的TreeView ,其它的内容都和前面系列内容相似,还是和之前文章介绍的一样,首先看看做出的DEMO的最终样 ...

  3. WPF Path总结(一)

    首先来看看Path的定义,参考MSDN:绘制一系列相互连接的直线和曲线.介绍比较简单,我们再来看看备注中有些什么,Path 对象可以绘制封闭式还是开放式形状. 多个形状和甚至曲线的形状.与不 Line ...

  4. MyBatis基础:MyBatis入门(1)

    1. MyBatis简介 MyBatis 是支持定制化 SQL.存储过程以及高级映射的优秀的持久层框架. MyBatis 避免了几乎所有的 JDBC 代码和手动设置参数以及获取结果集. MyBatis ...

  5. SpringJdbc框架

    import javax.sql.DataSource; import org.springframework.jdbc.core.JdbcTemplate; import JdbcUtils.Jdb ...

  6. JSED204B

    简介 JESD204是一种连接数据转换器(ADC和DAC)和逻辑器件的高速串行接口,该标准的 B 修订版支持高达 12.5 Gbps串行数据速率,并可确保 JESD204 链路具有可重复的确定性延迟. ...

  7. 【建模应用】PLS偏最小二乘回归原理与应用

    @author:Andrew.Du 声明:本文为原创,转载请注明出处:http://www.cnblogs.com/duye/p/9031511.html,谢谢. 一.前言 1.目的: 我写这篇文章的 ...

  8. puppet一些常用的参数

    puppet一些常用的参数 通过@,realize来定义使用虚拟资源 虚拟资源主要来解决在安装包的时候,互相冲突的问题 具体参考这里 简单说下,在定义资源的时候加上@ 例如: @package { & ...

  9. Matplotlib学习---用matplotlib画折线图(line chart)

    这里利用Jake Vanderplas所著的<Python数据科学手册>一书中的数据,学习画图. 数据地址:https://raw.githubusercontent.com/jakevd ...

  10. python的小练习

    # -*- coding: utf-8 -*- """练习:有1,2,3,4. 4个数能组成多少个互不相同且无重复数字的三位数,分别是多少?""&qu ...