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.
iCal4jOutlookカレンダーから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"));