Hi,
I am looking for some subclasses of the Java calendar class, preferably a Hijri (Islamic) calendar implementation, but will potentially require more. Does anyone know of a library that is available for commercial use?
I have found IBM's ICU library (here), however, they do not extend java.util.Calendar
and instead have written their own class which also replies on the custom classes; UDate
and ULocale
. I am attempting to I18n an existing java application which already has over 400 usages of Calendar so I ideally want to stick to that class. Any suggestions?
Thanks in advance.