java- iCal4j - 添加会议描述

发布于 2024-12-23 11:50:49 字数 209 浏览 1 评论 0原文

我正在使用 iCal4j 从 Outlook 日历创建 ics 文件。现在,当我创建 VEvent 对象时,我将添加日历主题。

VEvent meeting = new VEvent(startDate, endDate, subject);

但如何添加会议描述呢?我找不到任何添加它的选项。任何建议将不胜感激。

谢谢。

I am using iCal4j to creating ics file from outlook calendar. Now when I am creating a VEvent object, I am adding the calendar subject.

VEvent meeting = new VEvent(startDate, endDate, subject);

But how to add the meeting description ? I could not find any option to add it. Any suggestion will be deeply appreciated.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沧桑㈠ 2024-12-30 11:50:49

你必须通过属性列表来完成;例如

VEvent meeting = new VEvent(startDate, endDate, subject);
meeting.getProperties().add(new Description("Description text goes here"));

You have to do it through the properties list; for example

VEvent meeting = new VEvent(startDate, endDate, subject);
meeting.getProperties().add(new Description("Description text goes here"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文