L
LinuxRulez
I am developing a Java applicatioin whose date should be a day ahead of
the actual day. Can someone please help me how to add a day to the
current date?
Right now my mid let is able to display the current date....I've tried
using the following code but it seems the add method of the Calendar
class is not supported by the Micro Edition of JAVA
Calendar workingCal;
workingCal = Calendar.getInstance();
workingCal.add(Calendar.DAY_OF_WEEK, 1);
Help!
the actual day. Can someone please help me how to add a day to the
current date?
Right now my mid let is able to display the current date....I've tried
using the following code but it seems the add method of the Calendar
class is not supported by the Micro Edition of JAVA
Calendar workingCal;
workingCal = Calendar.getInstance();
workingCal.add(Calendar.DAY_OF_WEEK, 1);
Help!