import java.util.Date; public class MainClass { public static void main(String[] argv) { Date d = new Date(); String s = d.toString(); } }