Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我iCal4j习惯从 Outlook 日历创建 ics 文件。现在,当我创建一个 VEvent 对象时,我正在添加日历主题。
iCal4j
VEvent meeting = new VEvent(startDate, endDate, subject);
但是如何添加会议描述?我找不到任何添加它的选项。任何建议将不胜感激。
谢谢。
您必须通过属性列表来完成;例如
VEvent meeting = new VEvent(startDate, endDate, subject); meeting.getProperties().add(new Description("Description text goes here"));