1
0
mirror of synced 2025-12-26 23:38:00 +08:00
Files
lunar-java/README.md

2.3 KiB

lunar License

lunar is a calendar library for Solar and Chinese Lunar.

Support since java 1.5

简体中文

Release

<dependency>
  <groupId>cn.6tail</groupId>
  <artifactId>lunar</artifactId>
  <version>1.0.0</version>
</dependency>

Snapshot

<repository>
  <id>sonatype</id>
  <url>https://oss.sonatype.org/content/groups/public/</url>
  <snapshots>
    <enabled>true</enabled>
    <updatePolicy>daily</updatePolicy>
    <checksumPolicy>warn</checksumPolicy>
  </snapshots>
</repository>
<dependency>
  <groupId>cn.6tail</groupId>
  <artifactId>lunar</artifactId>
  <version>1.0.0-SNAPSHOT</version>
</dependency>

Download

If you will use jars in your projects, I suggest you to download latest snapshot versions with less bugs.

Download

Example

import com.nlf.calendar.Lunar;
 
/**
 * 阴历示例
 *
 */
public class LunarSample{
  public static void main(String[] args){
    //今天
    Lunar date = new Lunar();
    //输出阴历信息
    System.out.println(date.toFullString());
    //输出阳历信息
    System.out.println(date.getSolar().toFullString());
    System.out.println();
    //指定阴历的某一天
    date = new Lunar(1986,4,21);
    System.out.println(date.toFullString());
    System.out.println(date.getSolar().toFullString());
  }
}

Output:

丙申年捌月初八 猴年丁酉月癸巳日 北方玄武 斗木獬 彭祖[癸不词讼理弱敌强 巳不远行财物伏藏]
2016-09-08 闰年 星期四 (世界扫盲日) 处女座
 
丙寅年肆月廿一 虎年癸巳月癸酉日 北方玄武 危月燕 彭祖[癸不词讼理弱敌强 酉不会客醉坐颠狂]
1986-05-29 星期四 双子座

Documentation

Please visit http://6tail.cn/calendar/api.html

Contact

lunar