Monday, March 2, 2015

Displaying month name of a java pgm



Displaying month name

import java.util.Calendar;
import java.util.Formatter;
 public class MainClass
{
   public static void main(String args[])
  {
      Formatter fmt = new Formatter();
      Calendar cal = Calendar.getInstance();
      fmt = new Formatter();
      fmt.format("%tB %tb %tm", cal, cal, cal);
      System.out.println(fmt);
   }
}

No comments:

Post a Comment