I don't use
Java for full fledged programming, but I use it to do math calculations and date calculations for an Interactive Voice Response system. Here is my problem. The date format I get back from the following code is formatted as such 3/3/08. The problem is I need to get this format to read 03/03/08. Can someone tell me how? Below is the code.
calEndDate = Java.util.GregorianCalendar(intYear, intMonth, intDay)
{
//ADD 3 MONTHS TO START DATE
calEndDate.add(calEndDate.MONTH, 2);
//SUBTRACT 1 DAY FROM END DATE
calEndDate.add(calEndDate.DATE, (-1));
//SET DATE TO GREGORIAN CALENDAR RESULT
java.util.Date dateEndDate = calEndDate.getTime();
// RETURN TO SCRIPT
return dateEndDate;
}