When was this Java class compiled?
Credits to Dmitry Beransky on the advanced-Java@discuss.develop.com list.
import Java.util.Date;
import Java.io.IOException;
public class When {
public static void main(String args[]) throws IOException {
Date d =
new Date(
When.class.getResource("When.class")
.openConnection()
.getLastModified()
);
System.out.println("This class was compiled on " + d);
}
}