Home > Projects > Java Calendar
This class makes it easy to generate simple iCalendar files for iCal, Mozilla Calendar, and Microsoft Outlook Calendar.
Example of Use
Writer out=getWriterToSendContent();
iCal cal=new iCal("Name of Calendar");
cal.addEvent(new Date(start), new Date(start+duration), "Description of event.");
... Add other events ...
cal.write(out);
out.close();