Mega Code Archive

 
Categories / Java Tutorial / Development
 

Localized, abbreviated month

import java.util.Date; public class MainClass {   public static void main(String[] args) {     Date now = new Date();     System.out.printf("localized, abbreviated month: %th/%Th\n", now, now);   } } // localized, abbreviated month: May/MAY