• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Use iCalendar Component to Generate Dates for Specified Pattern

 
Ranch Hand
Posts: 714
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is new in this release?

The long awaited version of Aspose.Network for Java 2.3.0.0 . It includes the iCalendar component; iCalendar is already part of Aspose.Network for .NET, now you can generate dates according to the specified recurrence pattern in Java. Moreover this release also includes support for creating, loading, editing and saving appointments in ICS format. The main new features added in this release are listed below

- iCalendar implementation - Generate dates according to specified recurrence pattern
- Create new appointment and save in ICS format
- Load and manipulate ICS calendar file

Below is an example to generate dates based on a recurrence pattern:

String pattern = “DTSTART:19970902T090000\n” +
“RRULE:FREQ=WEEKLY;UNTIL=19971007T000000Z;WKST=SU;BYDAY=SU,MO”;
RecurrencePattern recPattern = new RecurrencePattern(pattern);

// Get all the dates generated by this rule

DateCollection dateColl = recPattern.generateOccurrences();

Newly added documentation pages and articles

Some new tips and articles have now been added into Aspose.Network for Java documentation that may guide you briefly how to use Aspose.Network for performing different tasks like the followings.

- Add Embedded images to Email Message
- Manage Attachments in Email Message

Overview:Aspose.Network for Java

Aspose.Network for Java is a Non-Graphical Java component that enables Java applications to read and write Microsoft Outlook documents without utilizing Microsoft Outlook. It enables developers to create new MSG file from scratch, update an existing MSG file, read Outlook MSG file & get it's properties like subject, body, recipients in to, cc and bcc, Adding or removing attachment, sender information and MAPI properties. Aspose.Network for Java can be used with Web as well as Desktop Application.

More about Aspose.Network for Java

- Homepage of Aspose.Network for Java
- Download Aspose.Network for Java
- Online documentation of Aspose.Network for Java
- Demos of Aspose.Network for Java
- Post your technical questions/queries to Aspose.Network for Java Forum
- Receive notifications about latest news and supported features by subscribing to Aspose.Network for Java blog

Contact Information
Aspose Pty Ltd,
Suite 163, 79 Longueville Road
Lane Cove, NSW, 2066
Australia
Aspose - The .NET and Java component publisher
[email]sales@aspose.com[/email]
Phone: 888.277.6734
Fax: 866.810.94651 
 
reply
    Bookmark Topic Watch Topic
  • New Topic