如何从 iCalendar RRULE 获取发生日期列表
我有 iCalendar 文件,其中包含出现次数的 RRULE。如何根据 iCal 文件中给定的开始日期和 RRULE 获取事件发生的日期列表。
在Java中,我想编写一个方法,该方法应该采用开始日期和RRULE并返回发生日期的列表。请帮助提供简单的解决方案或指示。
I have the iCalendar file with RRULE for occurrences. How to get the list of dates on which the event will be occurring as per given start date and RRULE in the iCal file.
In Java, I want to write a method which should take start date and RRULE and return me the list of occurrence dates. Please help with simple solution or directions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有一个专门用于解析 RRULE 的 Java 库,名为 google-rfc-2445。
以下链接包含一个使用该库的示例,您可以在其中提供开始日期和 RRULE,然后它会打印出日期。
http://google-rfc-2445.googlecode.com/svn/trunk /README.html
There is a Java library specifically for parsing RRULEs called google-rfc-2445.
The following link contains an example using the library where you supply a start date along with an RRULE and it prints out the dates.
http://google-rfc-2445.googlecode.com/svn/trunk/README.html
我没有机会阅读 README,因为 < strong>404 - 在此服务器上找不到请求的 URL /svn/trunk/README.html。如果您有示例可以展示,请分享。我找到了另一个解决方案lib-recur。 lib-recur 通过 maven 存储库 共享。
I do not have a chance to read README because of 404 - The requested URL /svn/trunk/README.html was not found on this server. If you have an example to show, please share it. I've found another solution lib-recur. lib-recur is shared via maven repository.