lunarcalendar java_GitHub - xuyongfu/LunarCalendar: A Java Calendar for Chinese Lunar.

LunarCalendar

68747470733a2f2f6a69747061636b2e696f2f762f5868696e4c69616e672f4c756e617243616c656e6461722e737667

68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f5868696e4c69616e672f4c756e617243616c656e6461722e737667

Introduce

Calendar for Chinese Lunar.

Easy to use and high performance.

Import

Gradle

dependencies {

compile 'com.xhinliang:LunarCalendar:4.0.7'

}

Maven

com.xhinliang

LunarCalendar

4.0.7

Sample

obtain single day

Code

LunarCalendar lunarCalender = LunarCalendar.obtainCalendar(2016, 2, 8);

System.out.println(lunarCalender.getLunar());

System.out.println(lunarCalender.getFullLunarStr());

Output

Lunar{year=2016, month=1, day=1}

二零一六年正月初一

obtain a month by weeks

Code

// LunarCalender[6][7], means the weeks of this month and the days of the weeks

// Just like the calender we use daily.

LunarCalendar[][] month = LunarCalendar.obtainCalendar(2016, 2);

for (LunarCalendar[] week : month) {

for (LunarCalendar day : week) {

if (day == null) {

System.out.print(' ');

continue;

}

System.out.println(String.format("%s", day.getLunarDay()));

}

System.out.println();

}

Output

廿三 廿四 廿五 廿六 廿七 廿八

廿九 初一 初二 初三 初四 初五 初六

初七 初八 初九 初十 十一 十二 十三

十四 十五 十六 十七 十八 十九 廿十

廿一 廿二

Usage

View the sample in Main

View the doc in root

More

Thanks

License

Copyright 2016 XhinLiang

Licensed under the Apache License, Version 2.0 (the "License");

you may not use this file except in compliance with the License.

You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software

distributed under the License is distributed on an "AS IS" BASIS,

WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

See the License for the specific language governing permissions and

limitations under the License.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值