Working with Appointments
Load and Save Appointment in ICS Format
The Appointment class in Aspose.Email for Java can be used to load an appointment in ICS format as well as to create a new appointment and save it to disk in ICS format. In this article, we first create an appointment and save it to disk in ICS format and then we load it.
Create an Appointment and Save to Disk in ICS Format
Following steps are required to create an appointment and save it in ICS format.
- Create an instance of the Appointment class and initialize it with this constructor.
- Pass the following arguments in the above constructor
- Attendees
- Description
- End Date
- Location
- Organizer
- Start Date
- Summary
- Created Date
- Last Modified Date
- Call the Save() method and specify the file name and format in the arguments.
The appointment can be opened in Microsoft Outlook or any program that can load an ICS file. If the file is opened in Microsoft Outlook it automatically adds the appointment in the Outlook calendar.
The following code snippets shows you how to create and save an appointment to disk in ICS format.
Load Appointment ICS Format
To load an appointment in ICS format, the following steps are required:
- Create an instance of the Appointment class.
- Call the Load() method by providing the path of the ICS file.
- Read any property to get any information from the appointment (ICS file).
The following code snippets shows you how to load an appointment in ICS format.
Create a Draft Appointment Request
In order to save an appointment in draft mode, the Method property of the Appointment class should be set to Publish. The following code sample demonstrates the use of this property as an example.
// For complete examples and data files, please go to https://github.com/aspose-email/Aspose.Email-for-Java | |
String sender = "test@gmail.com"; | |
String recipient = "test@email.com"; | |
MailMessage message = new MailMessage(sender, recipient, "", ""); | |
Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("GMT")); | |
calendar.set(2016, Calendar.NOVEMBER, 1, 0, 0, 0); | |
Date startDate = calendar.getTime(); | |
calendar.set(2016, Calendar.DECEMBER, 1); | |
Date endDate = calendar.getTime(); | |
MailAddressCollection attendees = new MailAddressCollection(); | |
attendees.addMailAddress(new MailAddress("attendee_address@aspose.com", "Attendee")); | |
//WeeklyRecurrencePattern expected = new WeeklyRecurrencePattern(3); | |
Appointment app = new Appointment("", startDate, endDate, new MailAddress("organizer_address@aspose.com", "Organizer"), attendees); | |
/* | |
* Appointment app = new Appointment("Appointment Location", | |
* "Appointment Summary", "Appointment Description", startDate, endDate, | |
* new MailAddress("organizer_address@aspose.com", "Organizer"), | |
* attendees, expected); | |
*/ | |
//Set the Appointment as Draft | |
app.setMethod(AppointmentMethodType.Publish); | |
message.addAlternateView(app.requestApointment()); | |
MapiMessage msg = MapiMessage.fromMailMessage(message); | |
// Save the appointment as draft. | |
msg.save(dataDir + "appointment-draft.msg"); |
Draft Appointment Creation from Text
// For complete examples and data files, please go to https://github.com/aspose-email/Aspose.Email-for-Java | |
String ical = "BEGIN:VCALENDAR\r\nMETHOD:PUBLISH\r\nPRODID:-//Aspose Ltd//iCalender Builder (v3.0)//EN\r\nVERSION:2.0\r\nBEGIN:VEVENT\r\nATTENDEE;CN=test@gmail.com:mailto:test@gmail.com\r\nDTSTART:20130220T171439\r\nDTEND:20130220T174439\r\nDTSTAMP:20130220T161439Z\r\nEND:VEVENT\r\nEND:VCALENDAR"; | |
String sender = "test@gmail.com"; | |
String recipient = "test@email.com"; | |
MailMessage message = new MailMessage(sender, recipient, "", ""); | |
AlternateView av = AlternateView.createAlternateViewFromString(ical, new ContentType("text/calendar")); | |
message.getAlternateViews().addItem(av); | |
MapiMessage msg = MapiMessage.fromMailMessage(message); | |
// Save the appointment as draft. | |
msg.save(dataDir + "DraftAppointment.msg"); |
Adding and Removing Attachments from Calendar Items
Aspose.Email provides an attachments collection that can be used to add and retrieve attachments associated with calendar items. This article shows how to:
- Create and add attachments to an Appointment class object.
- Retrieve attachments information an appointment.
- Extract attachments from an appointment.
// For complete examples and data files, please go to https://github.com/aspose-email/Aspose.Email-for-Java | |
// The path to the resource directory. | |
String dataDir = Utils.getSharedDataDir(AddAndRetrieveAttachmentFromCalendarItems.class) + "email/"; | |
Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("GMT")); | |
calendar.set(2016, Calendar.NOVEMBER, 1, 0, 0, 0); | |
Date startDate = calendar.getTime(); | |
calendar.set(2016, Calendar.DECEMBER, 1); | |
Date endDate = calendar.getTime(); | |
MailAddressCollection attendees = new MailAddressCollection(); | |
attendees.addMailAddress(new MailAddress("attendee_address@domain.com", "Attendee")); | |
WeeklyRecurrencePattern expected = new WeeklyRecurrencePattern(3); | |
Appointment app = new Appointment("Appointment Location", "Appointment Summary", "Appointment Description", startDate, endDate, new MailAddress("organizer_address@domain.com", "Organizer"), | |
attendees, expected); | |
//Attach a file from disc to this appointment | |
File file = new File(dataDir + "sample.xlsx"); | |
FileInputStream fis = new FileInputStream(file); | |
Attachment att = new Attachment(fis, file.getName()); | |
app.getAttachments().addItem(att); | |
fis.close(); | |
String savedFile = "appWithAttachments.ics"; | |
app.save(dataDir + savedFile, AppointmentSaveFormat.Ics); | |
Appointment app2 = Appointment.load(dataDir + savedFile); | |
System.out.println("Total Attachments: " + app2.getAttachments().size()); | |
for (int i = 0; i < app2.getAttachments().size(); i++) { | |
att = app2.getAttachments().get_Item(i); | |
System.out.println(att.getName()); | |
//Save the attachment to disc | |
att.save(dataDir + att.getName()); | |
} |
Formatting Appointment
The programming samples below demonstrates how to use the AppointmentFormattingOptions class to format text and HTML.
Programming Sample - Text Formatting
// For complete examples and data files, please go to https://github.com/aspose-email/Aspose.Email-for-Java | |
Appointment appointment = Appointment.load(dataDir + "test.ics"); | |
AppointmentFormattingOptions formattingOptions = new AppointmentFormattingOptions(); | |
formattingOptions.setLocationFormat("Where: {0}"); | |
formattingOptions.setTitleFormat("Subject: {0}"); | |
formattingOptions.setDescriptionFormat("\r\n*~*~*~*~*~*~*~*~*~*\r\n{0}"); | |
System.out.println(appointment.getAppointmentText(formattingOptions)); |
Programming Sample - HTML Formatting
// For complete examples and data files, please go to https://github.com/aspose-email/Aspose.Email-for-Java | |
Appointment appointment = Appointment.load(dataDir + "test.ics"); | |
AppointmentFormattingOptions formattingOptions = AppointmentFormattingOptions.createAsHtml(); | |
formattingOptions.setLocationFormat("<FONT SIZE=2 FACE=\"Arial\"><b>Where: {0}</b></FONT><BR>"); | |
formattingOptions.setTitleFormat("<FONT SIZE=2 FACE=\"Arial\"><b>Subject: {0}</b></FONT><BR>"); | |
formattingOptions.setDescriptionFormat("<P><FONT SIZE=2 FACE=\"Arial\">-----------<br><i>{0}</i></FONT></P>"); | |
System.out.println(appointment.getAppointmentText(formattingOptions)); |
Read Multiple Events from ICS File
// For complete examples and data files, please go to https://github.com/aspose-email/Aspose.Email-for-Java | |
String dataDir = Utils.getSharedDataDir(DisplayEmailInformation.class) + "email/"; | |
List<Appointment> appointments = new ArrayList<Appointment>(); | |
CalendarReader reader = new CalendarReader(dataDir + "US-Holidays.ics"); | |
while (reader.nextEvent()) | |
{ | |
appointments.add(reader.getCurrent()); | |
} | |
System.out.println("Number of events read: " + appointments.size()); | |
//Process appointments loaded from events | |
//Reading events from a specific index | |
appointments = new ArrayList<Appointment>(); | |
AppointmentLoadOptions options = new AppointmentLoadOptions(); | |
options.setEventIndex(4); | |
reader = new CalendarReader(dataDir + "US-Holidays.ics", options); | |
//start reading from 4th appointment... | |
while (reader.nextEvent()) | |
{ | |
appointments.add(reader.getCurrent()); | |
} |
Write Multiple Events from ICS File
// For complete examples and data files, please go to https://github.com/aspose-email/Aspose.Email-for-Java | |
IcsSaveOptions saveOptions = new IcsSaveOptions(); | |
saveOptions.setAction(AppointmentAction.Create); | |
CalendarWriter writer = new CalendarWriter("WirteMultipleEventsToICS_out.ics", saveOptions); | |
//Set the start and end date of meeting | |
Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("GMT")); | |
calendar.set(2018, Calendar.JUNE, 19, 19, 0, 0); //19 Jan, 2015 - 1900 | |
Date startDate = calendar.getTime(); | |
calendar.set(2018, Calendar.JUNE, 19, 20, 0, 0); | |
Date endDate = calendar.getTime(); | |
MailAddressCollection attendees = new MailAddressCollection(); | |
attendees.addItem(new MailAddress("recepientEmail@gmail.com")); | |
try { | |
for (int i = 0; i < 10; i++) { | |
//create Appointment instance | |
Appointment app = new Appointment("Room 112", //location | |
startDate, //start time | |
endDate, //end time | |
new MailAddress("organizer@domain.com"), //organizer | |
attendees //attendee | |
); | |
app.setDescription("Test body " + i); | |
app.setSummary("Test summary:" + i); | |
writer.write(app); | |
} | |
} finally { | |
writer.dispose(); | |
} |
Set Participants Status of Appointment Attendees
Aspose.Email for .NET API lets you set status of appointment attendees while formulating a reply message. This adds the PARTSTAT property to the ICS file.
// For complete examples and data files, please go to https://github.com/aspose-email/Aspose.Email-for-Java | |
String location = "Room 5"; | |
java.util.Calendar c = java.util.Calendar.getInstance(); | |
c.set(2011, 11, 10, 10, 12, 11); | |
Date startDate = c.getTime(); | |
c.set(2012, 10, 13, 13, 11, 12); | |
Date endDate = c.getTime(); | |
MailAddress organizer = new MailAddress("aaa@amail.com", "Organizer"); | |
MailAddressCollection attendees = new MailAddressCollection(); | |
MailAddress attendee1 = new MailAddress("bbb@bmail.com", "First attendee"); | |
MailAddress attendee2 = new MailAddress("ccc@cmail.com", "Second attendee"); | |
attendee1.setParticipationStatus(ParticipationStatus.Accepted); | |
attendee2.setParticipationStatus(ParticipationStatus.Declined); | |
attendees.addMailAddress(attendee1); | |
attendees.addMailAddress(attendee2); | |
Appointment target = new Appointment(location, startDate, endDate, organizer, attendees); |
Customize Product Identifier for ICalendar
Aspose.Email for Java API allows to get or set the product identifier that created iCalendar object.
How to get around Address Validation when trying to Load Appointments
Aspose.Email for Java API allows to get around the email validation error by setting the IgnoreSmtpAddressCheck option on the AppointmentLoadOptions object and passing it in to the load call.
AppointmentLoadOptions lo = new AppointmentLoadOptions();
lo.setIgnoreSmtpAddressCheck(true);
Appointment appointment = Appointment.load("app.ics", lo);