BC dates

  • Thread starter Thread starter Guest
  • Start date Start date
guy said:
anyone have good suggestions on how to manipulate BC dates, including date
arithmetic?

You could translate everything forward, do stuff and set it backwards again
(write a class to make this transparent in the rest of the code).
Otherwise, try looking for a Gregorian calendar implementation - I believe
there's a BC provision in there, and I believe the Java implementation
supports BC. Otherwise try here:

http://www.codeproject.com/datetime/date_time_parser.asp

It's pretty involved though.

Good luck!

Steve
 
Back
Top