I have a String Object in format yyyyMMdd.Is there a simple way to get a String with previous date in the same format? Thanks
|
|
I would rewrite these answers a bit. You can use
To get the same results as those that are being computed by using Calendar. |
|||||
|
|
Here is how to do it without Joda Time:
|
|||||||||||||
|
|
It's much harder than it should be in Java without library support. You can parse the given String into a Date object using an instance of the SimpleDateFormat class. Then you can use Calendar's add() to subtract one day. Then you can use SimpleDateFormat's format() to get the formatted date as a String. The Joda Time library a much easier API. |
|||
|
|
|
use SimpleDateFormat to parse the String to Date, then subtract one day. after that convert the date to String again. |
|||
|
|
|
HI, I want to get 20 days previous, to current date,
I had some UN Expected result, When i tried on Jan 11th, Current Time Tue Jan 11 12:32:16 IST 2011 X Time Sat Dec 11 12:32:16 IST 2010
This code solved my Problem. |
|||
|
|
|
||||
|
|
