Formatting day using SimpleDateFormat

  1. /*
  2.   Formatting day using SimpleDateFormat
  3.   This example shows how to format day using Java SimpleDateFormat class. Day can
  4.   be formatted in either d or dd formats.
  5. */
  6.  
  7. import java.text.SimpleDateFormat;
  8. import java.util.Date;
  9.  
  10. public class FormattingDay {
  11.  
  12. public static void main(String[] args) {
  13.  
  14. //create Date object
  15. Date date = new Date();
  16.  
  17. //formatting day in d format like 1,2 etc
  18. String strDateFormat = "d";
  19. SimpleDateFormat sdf = new SimpleDateFormat(strDateFormat);
  20.  
  21. System.out.println("Current day in d format : " + sdf.format(date));
  22.  
  23. //formatting day in dd format like 01, 02 etc.
  24. strDateFormat = "dd";
  25. sdf = new SimpleDateFormat(strDateFormat);
  26. System.out.println("Current day in dd format : " + sdf.format(date));
  27. }
  28. }
  29.  
  30. /*
  31. Typical output would be
  32. Current day in d format : 3
  33. Current day in dd format : 03
  34. */


Could not find what you are looking for? Search Java Examples