SimpleDateFormatTest.java 403 Bytes
Newer Older
Tom Tromey committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import java.util.*; // for Date()
import java.text.*;

public class SimpleDateFormatTest
{
  public static void main(String args[])
    {
      try {
	SimpleDateFormat formatter
	  = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss z");
	Date current = new Date();
	System.out.println("PASSED: time="+formatter.format(current));
      } catch (Exception e) {
	System.out.println("FAILED: "+e);
      }
    }
}