Mega Code Archive

 
Categories / Java Tutorial / Development
 

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