ICal4j中的递归规则



我正在尝试使用ICal4j创建一个.ics文件。
但是当我尝试添加递归时,它失败了,抛出ValidationException:

net.fortuna.ical4j.model.ValidationException: Invalid property: RRULE at
        net.fortuna.ical4j.model.Calendar.validate(Calendar.java:297) at  
        net.fortuna.ical4j.model.Calendar.validate(Calendar.java:257) at 
        net.fortuna.ical4j.data.CalendarOutputter.output(CalendarOutputter.java:96) at 
        net.fortuna.ical4j.data.CalendarOutputter.output(CalendarOutputter.java:83)
我添加递归式的代码是:
Recur recur = new Recur(Recur.WEEKLY,null);
recur.setUntil( new DateTime(dateTo.getTime()) );
RRule rule = new RRule(recur);
cal.getProperties().add(rule);

如果没有此规则,它可以正常工作,但我想在每周一添加此事件
直到12 December 2011 (dateTo返回的日期)。什么好主意吗?

必须将递归规则(RRULE)属性添加到日历中的特定事件(VEVENT)中,而不是日历本身。例如

myEvent.getProperties().add(rule);

如果你想让事件发生在星期一,你可能应该使用这样的规则:

FREQ=WEEKLY;BYDAY=MO;UNTIL=<date>

这是我的头,所以最好检查RFC来确保:

https://www.rfc-editor.org/rfc/rfc5545 section-3.3.10

下面是相同的递归规则示例周递归规则

RRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=MO;UNTIL=20161222T000000Z
RRULE:FREQ=MONTHLY;INTERVAL=<Every month/with some interval>;BYDAY=<Day of week>;UNTIL=<Until Date>

所以你的规则应该是: "RRULE:FREQ=MONTHLY;INTERVAL=1;BYDAY=MO;UNTIL=20111212T000000Z"

给出了创建递归规则和日期的代码

class CreateRule{
    static {
        weekMap.put(Short.valueOf("0"), "SU");
        weekMap.put(Short.valueOf("1"), "MO");
        weekMap.put(Short.valueOf("2"), "TU");
        weekMap.put(Short.valueOf("3"), "WE");
        weekMap.put(Short.valueOf("4"), "TH");
        weekMap.put(Short.valueOf("5"), "FR");
        weekMap.put(Short.valueOf("6"), "SA");
    }
    Short repeatCountMonthly = repeatCount != null ? repeatCount : 0;
    String weekDay = weekMap.get(<repeatMonthWeek>);
    //Create recurrence Rule    
    String monthlyRecurrenceRule = DateUtils.getMonthlyRecurrenceRule(repeatCountMonthly,endsNever,                             endsAfterOccurrences,endTime,repeatMonthDay,weekDay);
    //Create recurrence Dates
    Set<LocalDate> monthlyStartDates = CalendarUtils.getRecurrenceDates(monthlyRecurrenceRule,
                    LocalDate.fromDateFields(startDate));
}

类将有方法来创建规则和生成日期:

class DateUtils{
            public static String getMonthlyRecurrenceRule(Short interval,boolean endsNever,Integer occurrences, StringBuilder endTime,Short dayOfMonth,String dayOfWeek){
                StringBuilder monthlyRecurrenceRule = new StringBuilder("RRULE:FREQ=MONTHLY");
                if(interval!=null&&interval.intValue()>0)
                    monthlyRecurrenceRule.append(";INTERVAL=").append(interval.toString());
                if(dayOfMonth!=null && dayOfMonth>0)
                    monthlyRecurrenceRule.append(";BYMONTHDAY=").append(dayOfMonth.toString());
                else
                    monthlyRecurrenceRule.append(";BYDAY=").append(dayOfWeek);
                if(endsNever){
                    //set endtime as startdate+10 years
                    monthlyRecurrenceRule.append(";UNTIL=").append("20271231T090000Z");
                }
                else{
                    if(occurrences!=null&&occurrences.intValue()>0)
                        monthlyRecurrenceRule.append(";COUNT=").append(occurrences.toString());
                    else
                        monthlyRecurrenceRule.append(";UNTIL=").append(endTime.toString());
                }
                return monthlyRecurrenceRule.toString();
            }
            public static Set<LocalDate> getRecurrenceDates(String rRule,LocalDate startDate) throws ParseException{
                Set<LocalDate> recurrenceDates = new HashSet<LocalDate>();
                for (LocalDate date : LocalDateIteratorFactory.createLocalDateIterable(rRule, startDate, true)) {
                     recurrenceDates.add(date);
                    }
                return recurrenceDates;
            }   
        }

我在使用这个API时有类似的问题。不幸的是,我现在没有代码,但我记得那个问题是,一些属性是"可选的"。有一个API允许它们注册。我建议您下载源代码并查看validate方法的功能。您将看到它验证属性是否在集合(或映射)中。然后找到向这个集合添加属性的方法。

如果您在获取源代码时遇到麻烦,只需反编译类文件。这个包裹是我亲自做的。我使用插件eclipse,反编译每个类,没有相关的源代码:http://java.decompiler.free.fr/?q=jdeclipse

我很抱歉,我的答案不够具体,但我希望它是有帮助的。好运。

相关内容

  • 没有找到相关文章

最新更新