Für alles rund um iCal ist http://wiki.modularity.net.au/ical4j/index.php die Standardlösung. Allerdings ist mir das zu fett und hat auch noch diverse Abhängigkeiten. Daher habe ich mir eine einfache Klasse gebaut, die iCal-Dokumente für Events erzeugt.
String s = new ICalendar()
.start( new Date() )
.end( new Date() )
.summary( "Ba,st;ille\\ Day Party\näöß" )
.toString();System.out.print( s );erzeugt:
BEGIN:VCALENDAR
VERSION:2.0PRODID:-//tutego//NONSGML ICalendar//DE
BEGIN:VEVENT
DTSTART:20110904T200944
DTEND:20110904T200944
SUMMARY:Ba\,st\;ille\\ Day Party\näöß
END:VEVENT
END:VCALENDAR
Möchte das jmd. testen und mit Tipps geben?
Ähnliche Beiträge
Hi, auch wenn der erste Satz für mich wenig Sinn ergibt 😉 Kann ich mir deine Klasse gern mal ansehen.
lg
Thomas