View Single Post
  #3 (permalink)  
Old 07-01-2007, 10:39 PM
Felissa Felissa is offline
Member
 
Join Date: Jun 2007
Posts: 95
Felissa is on a distinguished road
This what I have so far:

Code:
import java.util.*; import java.text.*; public class Calendar { public static void main(String[] args) { Date current = new Date (); DateFormat DF = DateFormat.getDateInstance(); String str = DF.format(current); System.out.println("Date: " + str); } }
I'm not sure how to add the locale or how to hard code the date.
Thanks
Felissa

Thanks for your time!!
Reply With Quote