How to get current Century from a date in Java ?
For example the date "06/03/2011" according to format "MM/dd/yyyy". How can i get current century from this date using SimpleDateFormat?
|
How to get current Century from a date in Java ? For example the date "06/03/2011" according to format "MM/dd/yyyy". How can i get current century from this date using SimpleDateFormat? |
|||||||||||
|
|
|||||||
|
|
I dont know anything about Java but why don't you just get the full year and make the last 2 digits 0? EDIT If you want 2011 to become 21st century - just get the fully qualified year in string format, then knock off the last 2 characters, then parse to an int and add 1! |
|||||||||
|
|
Split it by the slahes, get the first two symbols of the third element in the resulting array, Integer.parseInt it and add 1, that is:
|
|||
|
|
|
You know, i think standart JDK does not support this feature, and then why you not use JodaTime library ? It's very easy if you use this :) |
|||
|
|