java,陽曆轉陰曆(農曆)

前幾天在blog中,對網友的java萬年曆作修改,看到有的網友說能不能加上農曆,後來在網上看到有人寫過幾個陽曆轉陰曆的算法,我比較了一個發現,這個算法還算不錯,只要有的計算機編程基礎的人看明白應該是沒有問題的,其實這個就和我們以前在c中,判斷一天是周幾的算法差不多,都是和某一個特定的時間作比較,算出差多少天,再根據月大月小瑞月這些規則,算出是農曆的那年那月那日. 
Java代碼  收藏代碼
  1. package clock;  
  2.   
  3. import java.text.ParseException;  
  4. import java.text.SimpleDateFormat;  
  5. import java.util.Calendar;  
  6. import java.util.Date;  
  7.   
  8. public class Lunar {  
  9.     private int year;  
  10.     private int month;  
  11.     private int day;  
  12.     private boolean leap;  
  13.     final static String chineseNumber[] = {"一""二""三""四""五""六""七""八""九""十""十一""十二"};  
  14.     static SimpleDateFormat chineseDateFormat = new SimpleDateFormat("yyyy年MM月dd日");  
  15.     final static long[] lunarInfo = new long[]  
  16.     {0x04bd80x04ae00x0a5700x054d50x0d2600x0d9500x165540x056a00x09ad00x055d2,  
  17.      0x04ae00x0a5b60x0a4d00x0d2500x1d2550x0b5400x0d6a00x0ada20x095b00x14977,  
  18.      0x049700x0a4b00x0b4b50x06a500x06d400x1ab540x02b600x095700x052f20x04970,  
  19.      0x065660x0d4a00x0ea500x06e950x05ad00x02b600x186e30x092e00x1c8d70x0c950,  
  20.      0x0d4a00x1d8a60x0b5500x056a00x1a5b40x025d00x092d00x0d2b20x0a9500x0b557,  
  21.      0x06ca00x0b5500x153550x04da00x0a5d00x145730x052d00x0a9a80x0e9500x06aa0,  
  22.      0x0aea60x0ab500x04b600x0aae40x0a5700x052600x0f2630x0d9500x05b570x056a0,  
  23.      0x096d00x04dd50x04ad00x0a4d00x0d4d40x0d2500x0d5580x0b5400x0b5a00x195a6,  
  24.      0x095b00x049b00x0a9740x0a4b00x0b27a0x06a500x06d400x0af460x0ab600x09570,  
  25.      0x04af50x049700x064b00x074a30x0ea500x06b580x055c00x0ab600x096d50x092e0,  
  26.      0x0c9600x0d9540x0d4a00x0da500x075520x056a00x0abb70x025d00x092d00x0cab5,  
  27.      0x0a9500x0b4a00x0baa40x0ad500x055d90x04ba00x0a5b00x151760x052b00x0a930,  
  28.      0x079540x06aa00x0ad500x05b520x04b600x0a6e60x0a4e00x0d2600x0ea650x0d530,  
  29.      0x05aa00x076a30x096d00x04bd70x04ad00x0a4d00x1d0b60x0d2500x0d5200x0dd45,  
  30.      0x0b5a00x056d00x055b20x049b00x0a5770x0a4b00x0aa500x1b2550x06d200x0ada0};  
  31.   
  32.     //====== 傳回農曆 y年的總天數  
  33.     final private static int yearDays(int y) {  
  34.         int i, sum = 348;  
  35.         for (i = 0x8000; i > 0x8; i >>= 1) {  
  36.             if ((lunarInfo[y - 1900] & i) != 0) sum += 1;  
  37.         }  
  38.         return (sum + leapDays(y));  
  39.     }  
  40.   
  41.     //====== 傳回農曆 y年閏月的天數  
  42.     final private static int leapDays(int y) {  
  43.         if (leapMonth(y) != 0) {  
  44.             if ((lunarInfo[y - 1900] & 0x10000) != 0)  
  45.                 return 30;  
  46.             else  
  47.                 return 29;  
  48.         } else  
  49.             return 0;  
  50.     }  
  51.   
  52.     //====== 傳回農曆 y年閏哪個月 1-12 , 沒閏傳回 0  
  53.     final private static int leapMonth(int y) {  
  54.         return (int) (lunarInfo[y - 1900] & 0xf);  
  55.     }  
  56.   
  57.     //====== 傳回農曆 y年m月的總天數  
  58.     final private static int monthDays(int y, int m) {  
  59.         if ((lunarInfo[y - 1900] & (0x10000 >> m)) == 0)  
  60.             return 29;  
  61.         else  
  62.             return 30;  
  63.     }  
  64.   
  65.     //====== 傳回農曆 y年的生肖  
  66.     final public String animalsYear() {  
  67.         final String[] Animals = new String[]{"鼠""牛""虎""兔""龍""蛇""馬""羊""猴""雞""狗""豬"};  
  68.         return Animals[(year - 4) % 12];  
  69.     }  
  70.   
  71.     //====== 傳入 月日的offset 傳回干支, 0=甲子  
  72.     final private static String cyclicalm(int num) {  
  73.         final String[] Gan = new String[]{"甲""乙""丙""丁""戊""己""庚""辛""壬""癸"};  
  74.         final String[] Zhi = new String[]{"子""醜""寅""卯""辰""巳""午""未""申""酉""戌""亥"};  
  75.         return (Gan[num % 10] + Zhi[num % 12]);  
  76.     }  
  77.   
  78.     //====== 傳入 offset 傳回干支, 0=甲子  
  79.     final public String cyclical() {  
  80.         int num = year - 1900 + 36;  
  81.         return (cyclicalm(num));  
  82.     }  
  83.   
  84.     /** *//** 
  85.      * 傳出y年m月d日對應的農曆. 
  86.      * yearCyl3:農曆年與1864的相差數              ? 
  87.      * monCyl4:從1900年1月31日以來,閏月數 
  88.      * dayCyl5:與1900年1月31日相差的天數,再加40      ? 
  89.      * @param cal  
  90.      * @return  
  91.      */  
  92.     public Lunar(Calendar cal) {  
  93.         @SuppressWarnings("unused"int yearCyl, monCyl, dayCyl;  
  94.         int leapMonth = 0;  
  95.         Date baseDate = null;  
  96.         try {  
  97.             baseDate = chineseDateFormat.parse("1900年1月31日");  
  98.         } catch (ParseException e) {  
  99.             e.printStackTrace();  //To change body of catch statement use Options | File Templates.  
  100.         }  
  101.   
  102.         //求出和1900年1月31日相差的天數  
  103.         int offset = (int) ((cal.getTime().getTime() - baseDate.getTime()) / 86400000L);  
  104.         dayCyl = offset + 40;  
  105.         monCyl = 14;  
  106.   
  107.         //用offset減去每農曆年的天數  
  108.         // 計算當天是農曆第幾天  
  109.         //i最終結果是農曆的年份  
  110.         //offset是當年的第幾天  
  111.         int iYear, daysOfYear = 0;  
  112.         for (iYear = 1900; iYear < 2050 && offset > 0; iYear++) {  
  113.             daysOfYear = yearDays(iYear);  
  114.             offset -= daysOfYear;  
  115.             monCyl += 12;  
  116.         }  
  117.         if (offset < 0) {  
  118.             offset += daysOfYear;  
  119.             iYear--;  
  120.             monCyl -= 12;  
  121.         }  
  122.         //農曆年份  
  123.         year = iYear;  
  124.   
  125.         yearCyl = iYear - 1864;  
  126.         leapMonth = leapMonth(iYear); //閏哪個月,1-12  
  127.         leap = false;  
  128.   
  129.         //用當年的天數offset,逐個減去每月(農曆)的天數,求出當天是本月的第幾天  
  130.         int iMonth, daysOfMonth = 0;  
  131.         for (iMonth = 1; iMonth < 13 && offset > 0; iMonth++) {  
  132.             //閏月  
  133.             if (leapMonth > 0 && iMonth == (leapMonth + 1) && !leap) {  
  134.                 --iMonth;  
  135.                 leap = true;  
  136.                 daysOfMonth = leapDays(year);  
  137.             } else  
  138.                 daysOfMonth = monthDays(year, iMonth);  
  139.   
  140.             offset -= daysOfMonth;  
  141.             //解除閏月  
  142.             if (leap && iMonth == (leapMonth + 1)) leap = false;  
  143.             if (!leap) monCyl++;  
  144.         }  
  145.         //offset爲0時,並且剛纔計算的月份是閏月,要校正  
  146.         if (offset == 0 && leapMonth > 0 && iMonth == leapMonth + 1) {  
  147.             if (leap) {  
  148.                 leap = false;  
  149.             } else {  
  150.                 leap = true;  
  151.                 --iMonth;  
  152.                 --monCyl;  
  153.             }  
  154.         }  
  155.         //offset小於0時,也要校正  
  156.         if (offset < 0) {  
  157.             offset += daysOfMonth;  
  158.             --iMonth;  
  159.             --monCyl;  
  160.         }  
  161.         month = iMonth;  
  162.         day = offset + 1;  
  163.     }  
  164.   
  165.     public static String getChinaDayString(int day) {  
  166.         String chineseTen[] = {"初""十""廿""卅"};  
  167.         int n = day % 10 == 0 ? 9 : day % 10 - 1;  
  168.         if (day > 30)  
  169.             return "";  
  170.         if (day == 10)  
  171.             return "初十";  
  172.         else  
  173.             return chineseTen[day / 10] + chineseNumber[n];  
  174.     }  
  175.   
  176.     public String toString() {  
  177.         return year + "年" + (leap ? "閏" : "") + chineseNumber[month - 1] + "月" + getChinaDayString(day);  
  178.     }  
  179.   
  180.     public static void main(String[] args) throws ParseException {  
  181.         Calendar today = Calendar.getInstance();  
  182.         today.setTime(chineseDateFormat.parse("2003年1月1日"));  
  183.         Lunar lunar = new Lunar(today);  
  184.   
  185.         System.out.println("北京時間:" + chineseDateFormat.format(today.getTime()) + " 農曆" + lunar);  
  186.     }  
  187. }    
發佈了5 篇原創文章 · 獲贊 5 · 訪問量 25萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章