C#实现带阴历显示的日期代码

作者:shichen2014 时间:2023-12-11 02:19:04 

本文实例讲述了C#实现带阴历显示的日期代码,分享给大家供大家参考。具体方法如下:

这是一个用于酒店预定功能的带日期控件,类似去哪网酒店预定,由于需要设置节假日不同时期内的价格,因此需要自己写个时间控件。在此分享下写时间控件过程中用到的农历显示类。

public class CnCalendar
{
static ChineseLunisolarCalendar cCalendar = new ChineseLunisolarCalendar();
public static string GetChineseDateTime(DateTime datetime)
{
string strDate = datetime.Month + "月" + datetime.Day + "日";
int lyear = cCalendar.GetYear(datetime);
int lmonth = cCalendar.GetMonth(datetime);
int lday = cCalendar.GetDayOfMonth(datetime);
//获取闰月, 0 则表示没有闰月
int leapMonth = cCalendar.GetLeapMonth(lyear);
bool isleap = false;
if (leapMonth > 0)
{
if (leapMonth == lmonth)
{
//闰月
isleap = true;
lmonth--;
}
else if (lmonth > leapMonth)
{
lmonth--;
}
}
if (strDate == "1月1日")
{
return "<em class='calendarNLJieri'>元旦</em>";
}
else if (strDate == "2月14日")
{
return "<em class='calendarNLJieri'>情人节</em>";
}
else if (strDate == "3月8日")
{
return "<em class='calendarNLJieri'>妇女节</em>";
}
else if (strDate == "3月12日")
{
return "<em class='calendarNLJieri'>植树节</em>";
}
else if (strDate == "4月1日")
{
return "<em class='calendarNLJieri'>愚人节</em>";
}
else if (strDate == "5月1日")
{
return "<em class='calendarNLJieri'>劳动节</em>";
}
else if (strDate == "5月4日")
{
return "<em class='calendarNLJieri'>青年节</em>";
}
else if (strDate == "6月1日")
{
return "<em class='calendarNLJieri'>儿童节</em>";
}
else if (strDate == "8月1日")
{
return "<em class='calendarNLJieri'>建军节</em>";
}
else if (strDate == "9月10日")
{
return "<em class='calendarNLJieri'>教师节</em>";
}
else if (strDate == "10月1日")
{
return "<em class='calendarNLJieri'>国庆节</em>";
}
else
{
if (lday == 1)
{
return "<em class='calendarNL'>" +
string.Concat(isleap ? "闰" : string.Empty, GetLunisolarMonth(lmonth), "月") + "</em>";
}
else
{
string strNongli = string.Concat(isleap ? "闰" : string.Empty, GetLunisolarMonth(lmonth), "月",
GetLunisolarDay(lday));
switch (strNongli)
{
case "正月初一":
return "<em class='calendarNLJieri'>春节</em>";
case "正月十五":
return "<em class='calendarNLJieri'>元宵节</em>";
case "五月初五":
return "<em class='calendarNLJieri'>端午节</em>";
case "七月初七":
return "<em class='calendarNLJieri'>七夕</em>";
case "八月十五":
return "<em class='calendarNLJieri'>中秋节</em>";
case "九月初九":
return "<em class='calendarNLJieri'>重阳节</em>";
case "腊月初八":
return "<em class='calendarNLJieri'>腊八节</em>";
case "腊月二十四":
return "<em class='calendarNLJieri'>扫房节</em>";
default:
return "<em class='calendarNL'>" + GetLunisolarDay(lday) + "</em>";
}
}
}
}

#region 农历年
/// <summary>
/// 十天干
/// </summary>
private static string[] tiangan = { "甲", "乙", "丙", "丁", "戊", "己", "庚", "辛", "壬", "癸" };

/// <summary>
/// 十二地支
/// </summary>
private static string[] dizhi = { "子", "丑", "寅", "卯", "辰", "巳", "午", "未", "申", "酉", "戌", "亥" };

/// <summary>
/// 十二生肖
/// </summary>
private static string[] shengxiao = { "鼠", "牛", "虎", "免", "龙", "蛇", "马", "羊", "猴", "鸡", "狗", "猪" };

/// <summary>
/// 返回农历天干地支年
/// </summary>
/// <param name="year">农历年</param>
/// <returns></returns>
public static string GetLunisolarYear(int year)
{
if (year > 3)
{
int tgIndex = (year - 4) % 10;
int dzIndex = (year - 4) % 12;

return string.Concat(tiangan[tgIndex], dizhi[dzIndex], "[", shengxiao[dzIndex], "]");

}

throw new ArgumentOutOfRangeException("无效的年份!");
}
#endregion

#region 农历月

/// <summary>
/// 农历月
/// </summary>
private static string[] months = { "正", "二", "三", "四", "五", "六", "七", "八", "九", "十", "十一", "腊月" };


/// <summary>
/// 返回农历月
/// </summary>
/// <param name="month">月份</param>
/// <returns></returns>
public static string GetLunisolarMonth(int month)
{
if (month < 13 && month > 0)
{
return months[month - 1];
}

throw new ArgumentOutOfRangeException("无效的月份!");
}


#endregion

#region 农历日

/// <summary>
///
/// </summary>
private static string[] days1 = { "初", "十", "廿", "三" };

/// <summary>
/// 日
/// </summary>
private static string[] days = { "一", "二", "三", "四", "五", "六", "七", "八", "九", "十" };


/// <summary>
/// 返回农历日
/// </summary>
/// <param name="day"></param>
/// <returns></returns>
public static string GetLunisolarDay(int day)
{
if (day > 0 && day < 32)
{
if (day != 20 && day != 30)
{
return string.Concat(days1[(day - 1) / 10], days[(day - 1) % 10]);
}
else
{
return string.Concat(days[(day - 1) / 10], days1[1]);
}
}

throw new ArgumentOutOfRangeException("无效的日!");
}

#endregion

/// <summary>
/// 返回生肖
/// </summary>
/// <param name="datetime">公历日期</param>
/// <returns></returns>
public static string GetShengXiao(DateTime datetime)
{
return shengxiao[cCalendar.GetTerrestrialBranch(cCalendar.GetSexagenaryYear(datetime)) - 1];
}
}

希望本文所述对大家的C#程序设计有所帮助。

标签:C#,阴历,日期
0
投稿

猜你喜欢

  • Spring Security如何实现升级密码加密方式详解

    2023-09-02 08:47:31
  • flutter实现底部导航栏切换

    2023-05-30 14:43:40
  • Java实现简单图书借阅系统

    2023-11-22 01:09:02
  • Java简易学生成绩系统写法实例

    2021-08-18 08:06:03
  • Android开发高级组件之自动完成文本框(AutoCompleteTextView)用法示例【附源码下载】

    2021-09-14 08:23:54
  • JavaWeb开发之使用jQuery与Ajax实现动态联级菜单效果

    2023-11-28 19:46:08
  • Java 数据结构与算法系列精讲之字符串暴力匹配

    2021-10-06 05:43:27
  • winfrom 打印表格 字符串的封装实现代码 附源码下载

    2021-10-27 14:30:11
  • 相对路径和绝对路径的写法总结

    2022-06-17 07:38:47
  • C#时间格式转换为时间戳的方法步骤

    2022-04-13 12:27:19
  • Java基础之简单的图片处理

    2022-08-12 03:49:01
  • C#如何将DLL打包到程序中

    2022-08-06 13:18:57
  • 使用android-apktool来逆向(反编译)APK包方法介绍

    2022-03-19 14:15:51
  • SpringBoot新手入门的快速教程

    2021-09-28 23:23:25
  • MyBatis使用动态表或列代码解析

    2023-06-13 07:57:40
  • 解决IDEA鼠标点击光标变大问题

    2022-12-07 11:52:37
  • Android之RecyclerView轻松实现下拉刷新和加载更多示例

    2021-09-06 06:14:40
  • 关于WPF异步MVVM等待窗体的介绍

    2022-08-03 00:54:19
  • Java多线程(单例模式,堵塞队列,定时器)详解

    2022-09-18 16:22:20
  • C#启动外部程序的几种常用方法汇总

    2022-06-21 15:13:11
  • asp之家 软件编程 m.aspxhome.com