Eine Java-Bibliothek für Feiertage: Jollyday

http://jollyday.sourceforge.net/. Beispiel von der Webseite:

    1. To get a HolidayManager instance for US holidays:

      HolidayManager m = HolidayManager.getInstance(HolidayCalendar.UNITED_STATES);
    2. To get the holidays for the state New York:
        Set<Holiday> holidays = m.getHolidays(2010, "ny");
    3. To get the holidays for New York City in the state New York:
        Set<Holiday> holidays = m.getHolidays(2010, "ny", "nyc");
    4. To get a HolidayManager instance for your own holidays:
      1. create a Holidays file i.e. Holidays_MyOwn.xml
      2. put your holiday rules into this (for examples please the XML files in the provided JAR file in the folder holidays)
      3. put your Holidays_MyOwn.xml in your applications classpath
      4. to use your holiday rules create an HolidayManager instance by calling HolidayManager m = HolidayManager.getInstance("MyOwn");
      5. call Set<Holiday> holidays = m.getHolidays(2010); to retrieve the holidays for 2010.

Welche deutschen Feiertage erfasst werden listet http://jollyday.sourceforge.net/data/de.html auf. Die Lib. steht unter der Apache Lizenz und stammt vom Deutschen Sven Diedrichsen.

Ähnliche Beiträge

2 Gedanken zu “Eine Java-Bibliothek für Feiertage: Jollyday

  1. Moin Christian,

    vielen Dank für den Hinweis auf diese Bibliothek. Könnte genau das sein, was ich suche!

    Grüße,
    Marcus

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert