blob: 4bd8a5f4d49663cede7199d3b7cf955285f107fc (
plain)
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);
}
}
}
|