在 Aspose.Email 中格式化约会
Contents
[
Hide
]
Aspose.Email - 格式化约会
AppointmentFormattingOptions 类可用于将约会格式化为文本和 HTML 格式。
Java
Appointment appointment = Appointment.load(dataDir + "appointment.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));
下载运行代码
下载示例代码
欲了解更多细节,请访问 约会的格式化.