两种转换结果的方法都在,根据自己需要的格式,解放注释即可

结果:

阳历:1991-02-13 农历: 1990年十二月廿九阳历:1991-02-13 农历: 1990-12-29

java工具类:

package com.boot.common.utils;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
/**
* 类说明
*
* @author lizheng
* @date 2019年7月4日  新建
*/
public class LunarUtil {private int year;private int month;private int day;private boolean leap;//转大写的  如"1991-02-13转1990年十二月廿十九"用 String chineseNumber[] 这一个,注掉下面两个
//    final static String chineseNumber[] = {"一", "二", "三", "四", "五", "六", "七",
//            "八", "九", "十", "十一", "十二"};//转小写的  如"1991-02-13转1990-12-29"用chineseNumber[]和chineseNumberDay[] 这两个,注掉上面那个final static String chineseNumber[] = {"01", "02", "03", "04", "05", "06", "07","08", "09", "10", "11", "12"};final static String chineseNumberDay[] = {"1", "2", "3", "4", "5", "6", "7","8", "9", "10", "11", "12"};static SimpleDateFormat chineseDateFormat = new SimpleDateFormat("yyyy-MM-dd");final static long[] lunarInfo = new long[]{0x04bd8, 0x04ae0, 0x0a570,0x054d5, 0x0d260, 0x0d950, 0x16554, 0x056a0, 0x09ad0, 0x055d2,0x04ae0, 0x0a5b6, 0x0a4d0, 0x0d250, 0x1d255, 0x0b540, 0x0d6a0,0x0ada2, 0x095b0, 0x14977, 0x04970, 0x0a4b0, 0x0b4b5, 0x06a50,0x06d40, 0x1ab54, 0x02b60, 0x09570, 0x052f2, 0x04970, 0x06566,0x0d4a0, 0x0ea50, 0x06e95, 0x05ad0, 0x02b60, 0x186e3, 0x092e0,0x1c8d7, 0x0c950, 0x0d4a0, 0x1d8a6, 0x0b550, 0x056a0, 0x1a5b4,0x025d0, 0x092d0, 0x0d2b2, 0x0a950, 0x0b557, 0x06ca0, 0x0b550,0x15355, 0x04da0, 0x0a5d0, 0x14573, 0x052d0, 0x0a9a8, 0x0e950,0x06aa0, 0x0aea6, 0x0ab50, 0x04b60, 0x0aae4, 0x0a570, 0x05260,0x0f263, 0x0d950, 0x05b57, 0x056a0, 0x096d0, 0x04dd5, 0x04ad0,0x0a4d0, 0x0d4d4, 0x0d250, 0x0d558, 0x0b540, 0x0b5a0, 0x195a6,0x095b0, 0x049b0, 0x0a974, 0x0a4b0, 0x0b27a, 0x06a50, 0x06d40,0x0af46, 0x0ab60, 0x09570, 0x04af5, 0x04970, 0x064b0, 0x074a3,0x0ea50, 0x06b58, 0x055c0, 0x0ab60, 0x096d5, 0x092e0, 0x0c960,0x0d954, 0x0d4a0, 0x0da50, 0x07552, 0x056a0, 0x0abb7, 0x025d0,0x092d0, 0x0cab5, 0x0a950, 0x0b4a0, 0x0baa4, 0x0ad50, 0x055d9,0x04ba0, 0x0a5b0, 0x15176, 0x052b0, 0x0a930, 0x07954, 0x06aa0,0x0ad50, 0x05b52, 0x04b60, 0x0a6e6, 0x0a4e0, 0x0d260, 0x0ea65,0x0d530, 0x05aa0, 0x076a3, 0x096d0, 0x04bd7, 0x04ad0, 0x0a4d0,0x1d0b6, 0x0d250, 0x0d520, 0x0dd45, 0x0b5a0, 0x056d0, 0x055b2,0x049b0, 0x0a577, 0x0a4b0, 0x0aa50, 0x1b255, 0x06d20, 0x0ada0};// ====== 传回农历 y年的总天数final private static int yearDays(int y) {int i, sum = 348;for (i = 0x8000; i > 0x8; i >>= 1) {if ((lunarInfo[y - 1900] & i) != 0)sum += 1;}return (sum + leapDays(y));}// ====== 传回农历 y年闰月的天数final private static int leapDays(int y) {if (leapMonth(y) != 0) {if ((lunarInfo[y - 1900] & 0x10000) != 0)return 30;elsereturn 29;} elsereturn 0;}// ====== 传回农历 y年闰哪个月 1-12 , 没闰传回 0final private static int leapMonth(int y) {return (int) (lunarInfo[y - 1900] & 0xf);}// ====== 传回农历 y年m月的总天数final private static int monthDays(int y, int m) {if ((lunarInfo[y - 1900] & (0x10000 >> m)) == 0)return 29;elsereturn 30;}// ====== 传回农历 y年的生肖final public String animalsYear() {final String[] Animals = new String[]{"鼠", "牛", "虎", "兔", "龙", "蛇","马", "羊", "猴", "鸡", "狗", "猪"};return Animals[(year - 4) % 12];}// ====== 传入 月日的offset 传回干支, 0=甲子final private static String cyclicalm(int num) {final String[] Gan = new String[]{"甲", "乙", "丙", "丁", "戊", "己", "庚","辛", "壬", "癸"};final String[] Zhi = new String[]{"子", "丑", "寅", "卯", "辰", "巳", "午","未", "申", "酉", "戌", "亥"};return (Gan[num % 10] + Zhi[num % 12]);}// ====== 传入 offset 传回干支, 0=甲子final public String cyclical() {int num = year - 1900 + 36;return (cyclicalm(num));}/** *//***   * 传出y年m月d日对应的农历.   * yearCyl3:农历年与1864的相差数 ?   ** monCyl4:从1900年1月31日以来,闰月数   * dayCyl5:与1900年1月31日相差的天数,再加40 ?   * @param* cal   * @return*/public LunarUtil(Calendar cal) {@SuppressWarnings("unused")int yearCyl, monCyl, dayCyl;int leapMonth = 0;Date baseDate = null;try {baseDate = chineseDateFormat.parse("1900-1-31");} catch (ParseException e) {e.printStackTrace(); // To change body of catch statement use// Options | File Templates.}// 求出和1900年1月31日相差的天数int offset = (int) ((cal.getTime().getTime() - baseDate.getTime()) / 86400000L);dayCyl = offset + 40;monCyl = 14;// 用offset减去每农历年的天数// 计算当天是农历第几天// i最终结果是农历的年份// offset是当年的第几天int iYear, daysOfYear = 0;for (iYear = 1900; iYear < 2050 && offset > 0; iYear++) {daysOfYear = yearDays(iYear);offset -= daysOfYear;monCyl += 12;}if (offset < 0) {offset += daysOfYear;iYear--;monCyl -= 12;}// 农历年份year = iYear;yearCyl = iYear - 1864;leapMonth = leapMonth(iYear); // 闰哪个月,1-12leap = false;// 用当年的天数offset,逐个减去每月(农历)的天数,求出当天是本月的第几天int iMonth, daysOfMonth = 0;for (iMonth = 1; iMonth < 13 && offset > 0; iMonth++) {// 闰月if (leapMonth > 0 && iMonth == (leapMonth + 1) && !leap) {--iMonth;leap = true;daysOfMonth = leapDays(year);} elsedaysOfMonth = monthDays(year, iMonth);offset -= daysOfMonth;// 解除闰月if (leap && iMonth == (leapMonth + 1))leap = false;if (!leap)monCyl++;}// offset为0时,并且刚才计算的月份是闰月,要校正if (offset == 0 && leapMonth > 0 && iMonth == leapMonth + 1) {if (leap) {leap = false;} else {leap = true;--iMonth;--monCyl;}}// offset小于0时,也要校正if (offset < 0) {offset += daysOfMonth;--iMonth;--monCyl;}month = iMonth;day = offset + 1;}//转大写
//    public static String getChinaDayString(int day) {
//        String chineseTen[] = {"初", "十", "廿", "卅"};
//        int n = day % 10 == 0 ? 9 : day % 10 - 1;
//        if (day > 30)
//            return "";
//        if (day == 10)
//            return "初十";
//        else
//            return chineseTen[day / 10] + chineseNumber[n];
//    }//转小写public static String getChinaDayString(int day) {String chineseTen[] = {"0", "1", "2", "3"};int n = day % 10 == 0 ? 9 : day % 10 - 1;if (day > 30)return "";if (day == 10)return "10";elsereturn chineseTen[day / 10] + chineseNumberDay[n];}public String toString() {//转大写
//        return year + "年" + (leap ? "闰" : "") + chineseNumber[month - 1] + "月"
//                + getChinaDayString(day);//转小写return year + "-" + (leap ? "闰" : "") + chineseNumber[month - 1] + "-"+ getChinaDayString(day);}public static void main(String[] args) throws ParseException {Date date = new Date();SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
//        String d = dateFormat.format(date);//这是当前时间String d = "1991-02-13";Calendar today = Calendar.getInstance();today.setTime(chineseDateFormat.parse(d));LunarUtil lunar = new LunarUtil(today);System.out.println("阳历:" + chineseDateFormat.format(today.getTime())+ " 农历:" + lunar);}
}

参考https://blog.csdn.net/happydecai/article/details/81979117

JAVA公历转农历大写转农历小写 阳历转阴历相关推荐

  1. java人民币数字转大写汉字(小写转为大写).java

    对原有代码的优化,更简单易懂 java--人民币小写(金额)转为大写(金额转换)_CY_99的博客-CSDN博客_实数小写金额转大写pta 1,实现思路 因为汉语读法的特殊性把数字通过四位进行分割,因 ...

  2. Java 公历转农历,然后农历减一年(或者几天或者任意天),再把这个日期转成公历...

    由于系统的提醒有可能是农历的今天或指定时间要用quartz 实现定时任务 公历转农历,然后农历减一年(或者几天或者任意天),再把这个日期转成公历. 网上很多农历转公历的程序都有问题,QQ.百度的也有 ...

  3. java 打印abcd_用JAVA编程统计字符串ABCD123!@#$%ab中大写字母、小写字母、数字、其它字符的个数并打印出来...

    /** * 编程统计字符串"ABCD123!@#$%ab"中大写字母.小写字母.数字.其它字符的个数并打 印出来. */ public class Job1Test { publi ...

  4. 【算法java版01】:键盘录入一个字符串,将字符串中的大写改成小写,小写改成大写,数字改成*

    键盘录入一个字符串,将字符串中的大写改成小写,小写改成大写,数字改成 * 一.题目描述 二.解题思路 三.代码示例 四.测评结果 一.题目描述 键盘录入一个字符串,将字符串中的大写改成小写,小写改成大 ...

  5. java正则校验密码 长度不少于8位且至少包含大写字母、小写字母、数字和特殊符号中的四种组合 或者 其中任意三种组合

    java正则校验密码必须是包含大小写字母.数字.特殊符号的8位以上四种组合 或者 其中任意三种组合 一.排除法和详细解释 1.排除大写字母.小写字母.数字.特殊符号中1种组合.2种组合.3种组合,那么 ...

  6. java 输入一串字符统计大写字母个数小写字母个数及特殊符号并输出

    ```java//输入一串字符统计大写字母个数小写字母个数及特殊符号并输出public static void test5(String str){char[] s = str.toCharArray ...

  7. 单片机 DS1302 公历年月日 换算出星期、农历月份、农历日期 判断闰年

    传入格式:2020年,12月,12日. 返回1到7 代表星期一到星期天 /** 由年月日获取星期 https://www.cnblogs.com/fengbohello/p/3264300.html* ...

  8. Java时间格式化时YYYY(大写)和yyyy(小写)的区别

    Java时间格式化时YYYY(大写)和yyyy(小写)的区别 在Java中,我们大多数情况下格式日期都是用的SimpleDateFormat,比如说把一个日期格式成"yyyy-MM-dd&q ...

  9. java实现键盘录入一个字符串,统计该字符串中大写字母和小写字母数字字符空格出现的次数

    先说一下ASCII编码 * 大写字母A-Z (ASCII)65-90* 小写字母a-z (ASCII)97-122* 数字是:(ASCII)48-57* 空格的(ASCII)是32 接下来就是代码了, ...

最新文章

  1. 半小时训练亿级规模知识图谱,亚马逊AI开源知识图谱嵌入表示框架DGL-KE
  2. MimbleWimble 系列之Pedersen 承诺
  3. 【网页前端设计Front end】HTML语言基础.上(看不懂你来打我)
  4. open source license主流的开源软件协议介绍
  5. QSetting介绍
  6. 有梦想就有前进的动力
  7. CListCtrl控件
  8. 信息学奥赛一本通(1077:统计满足条件的4位数)
  9. uboot加载linux内核加载那些内容,几个地址参数及uboot加载启动内核过程的理解
  10. 如何使用组策略提升Windows系统性能
  11. MSCRM4.0商机移除价目表引起的问题
  12. oracle数据库下载地址
  13. 神经网络的过拟合是什么,神经网络过拟合的表现
  14. ubuntu10.10下安装五笔86输入法
  15. JAVA基础(43)彻底理解cookie、session、token
  16. python删除excel指定行_python实现Excel删除特定行、拷贝指定行操作
  17. 百度网盘限速的2个解决小办法
  18. Window 10 电源高性能模式设置
  19. 基于spring boot的奖助学金评审系统毕业设计源码031035
  20. Shader入门实战,拳皇被击闪白特效!

热门文章

  1. 程序员的浪漫——Node.js实现通过邮件定时给女朋友发情话
  2. 数码宝贝大冒险 3 全新的出发
  3. Java的异常处理练习题
  4. python mac自动打电话软件_Python实现Mac版QQ半自动发送情话(用了这个,我追到了自己的女神)...
  5. Linux 下Xorddos的木马清除
  6. chatgpt赋能Python-python_pareto
  7. 奇什么异什么的成语(奇什么异什么四字成语大全)
  8. onchange无法监听到js赋值给input的变化的解决方法
  9. MDK5.37最新安装包下载2023-1-28
  10. EXCEL根据基础数据列匹配查询公式