> 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
[quoted text clipped - 3 lines]
> workingCal = Calendar.getInstance();
> workingCal.add(Calendar.DAY_OF_WEEK, 1);
If you have the date as a Date object, call getTime() to get a long.
Once you've got the date as a long, add 1000 * 60 * 60 * 24. This will
fail if there is a daylight savings time adjustment, but it's the best
that can be done. (The idea behind leaving out Calendar is that MIDP
devices often don't know about daylight savings time.)

Signature
Chris Smith