Java ME get yesterday's date -


I need to get yesterday's date from Java's midlet.
I know Java is an add method in the calendar object but Java does not have it in my calendar.
Is there an easy way to get back tomorrow's date?

Thanks

How about some

 < Code> Calendar C = Calendar. Est Instance (); C.setTimeInMillis (c.getTimeInMillis () - MILLISECONDS_OF_ONE_DAY);  

??


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -