Thêm tệp đính kèm vào các mục lịch
Contents
[
Hide
]
Aspose.Email - Thêm Tệp đính kèm vào Mục Lịch
Aspose.Email cung cấp bộ sưu tập tệp đính kèm có thể được dùng để thêm tệp đính kèm vào các mục lịch.
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);
Tải mã đang chạy
Tải mã mẫu
Để biết thêm chi tiết, truy cập Thêm và Lấy Tệp đính kèm từ Mục Lịch.