Mega Code Archive

 
Categories / Java Tutorial / Development
 

Format Month in MMM format like Jan, Feb 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("MMM");     System.out.println("Current Month in MMM format : " + sdf.format(date));     } } //Current Month in MMM format : Feb