Tuesday, March 3, 2015

Formatting months in a java pgm



Formatting months

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));
   }
}

No comments:

Post a Comment