Mega Code Archive

 
Categories / Java Tutorial / Development
 

Format date in Long format

import java.text.DateFormat; import java.util.Date; public class Main {   public static void main(String[] args) {     Date date = new Date();     String strDate = DateFormat.getDateInstance(DateFormat.LONG).format(date);     System.out.println(strDate);   } }