<<< Specific Date formats | Index | DateUtils demo class >>> |
public class DateUsageDemo { Date invoiceDate = DateUtils.getCurrentDate(); public Date getCurrentDate() { return currentDate; } public String getFormattedDate() { DateFormat shortDate = DateFormat.getDateInstance( DateFormat.SHORT ); return shortDate.format( currentDate ); } }// class DateUsageDemo
<<< Specific Date formats | Index | DateUtils demo class >>> |