can anyone give me pointers to a library/way of getting country specific calendars. THis is because I am looking to implement Quartz and would like to use different calendars for different countries.
THank you
can anyone give me pointers to a library/way of getting country specific calendars. THis is because I am looking to implement Quartz and would like to use different calendars for different countries.
THank you
I would suggest trying Joda Time
http://joda-time.sourceforge.net/
, which has different Chronologies.
Have a look at this ->
http://icu-project.org/docs/papers/international_calendars_in_java.html
As Joao suggested, you can use
Calendar c = Calendar.getInstance(Locale.FRANCE);
You should also look at this
Is there a way to get a timeZone with (only) a country code (valid ISO-3166 code)?
and this
non standard locale with java.util.Calendar
Else best is using Joda-Time