View Single Post
  #2 (permalink)  
Old 05-07-2007, 04:24 PM
pegitha pegitha is offline
Member
 
Join Date: Apr 2007
Location: Indiana
Posts: 84
pegitha is on a distinguished road
Send a message via Skype™ to pegitha
This code:
Code:
Date now = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("EEEEEE, MMMM dd, yyyy" ); System.out.println(sdf.format(now));
will out put this:
Monday, May 07, 2007
Reply With Quote