Mega Code Archive

 
Categories / Java / Data Type
 

This is same as MEDIUM

import java.text.DateFormat; import java.util.Date; public class Main {   public static void main(String[] argv) throws Exception {     String s = DateFormat.getDateInstance(DateFormat.DEFAULT).format(new Date());     System.out.println(s);   } }