Mega Code Archive

 
Categories / Java Tutorial / Development
 

Format Month in MMMM format like January, February etc

import java.text.SimpleDateFormat; import java.util.Date; public class Main {   public static void main(String[] args) {     Date date = new Date();          SimpleDateFormat sdf = new SimpleDateFormat("MMMM");     System.out.println("Current Month in MMMM format : " + sdf.format(date));          } } //Current Month in MMMM format : February