向日历项添加附件
Contents
[
Hide
]
Aspose.Email - 向日历项添加附件
Aspose.Email 提供了一个附件集合,可用于添加与日历项关联的附件。
Java
Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
calendar.set(2012, Calendar.NOVEMBER, 1, 0, 0, 0);
Date startDate = calendar.getTime();
calendar.set(2012, Calendar.DECEMBER, 1);
Date endDate = calendar.getTime();
MailAddressCollection attendees = new MailAddressCollection();
attendees.addItem(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 + "AsposeXLS.xls");
FileInputStream fis = new FileInputStream(file);
Attachment att = new Attachment(fis, file.getName());
app.getAttachments().addItem(att);
fis.close();
String savedFile = dataDir + "AppWithAttachments.ics";
app.save(savedFile, AppointmentSaveFormat.Ics);
下载运行代码
下载示例代码
欲了解更多细节,请访问 添加和检索日历项附件.