Java implementation of calendar of a calendar year a calendar user completely custom

  • 2020-04-01 01:50:15
  • OfStack

Users can customize the printing of a year's calendar, that is, the calendar of a year all printed out

For example, print the calendar of 2013 as follows:


January  2013          
---------------------------------------------
   Sun   Mon   Tue   Wed   Thu   Fri   Sat
     2     3     4     5
     7     8     9     10    11    12
    14    15    16    17    18    19
    21    22    23    24    25    26
    28    29    30    31
             Febuary  2013          
---------------------------------------------
   Sun   Mon   Tue   Wed   Thu   Fri   Sat
     2
     4     5     6     7     8     9
    11    12    13    14    15    16
    18    19    20    21    22    23
    25    26    27    28
             March  2013          
---------------------------------------------
   Sun   Mon   Tue   Wed   Thu   Fri   Sat
     2
     4     5     6     7     8     9
    11    12    13    14    15    16
    18    19    20    21    22    23
    25    26    27    28    29    30

             April  2013          
---------------------------------------------
   Sun   Mon   Tue   Wed   Thu   Fri   Sat
     2     3     4     5     6
     8     9     10    11    12    13
    15    16    17    18    19    20
    22    23    24    25    26    27
    29    30
             May  2013          
---------------------------------------------
   Sun   Mon   Tue   Wed   Thu   Fri   Sat
     2     3     4
     6     7     8     9     10    11
    13    14    15    16    17    18
    20    21    22    23    24    25
    27    28    29    30    31
             Jun  2013          
---------------------------------------------
   Sun   Mon   Tue   Wed   Thu   Fri   Sat

     3     4     5     6     7     8
     10    11    12    13    14    15
    17    18    19    20    21    22
    24    25    26    27    28    29

             July  2013          
---------------------------------------------
   Sun   Mon   Tue   Wed   Thu   Fri   Sat
     2     3     4     5     6
     8     9     10    11    12    13
    15    16    17    18    19    20
    22    23    24    25    26    27
    29    30    31
             August  2013          
---------------------------------------------
   Sun   Mon   Tue   Wed   Thu   Fri   Sat
     2     3
     5     6     7     8     9     10
    12    13    14    15    16    17
    19    20    21    22    23    24
    26    27    28    29    30    31
             Septermber  2013          
---------------------------------------------
   Sun   Mon   Tue   Wed   Thu   Fri   Sat
     2     3     4     5     6     7
     9     10    11    12    13    14
    16    17    18    19    20    21
    23    24    25    26    27    28
    30
             October  2013          
---------------------------------------------
   Sun   Mon   Tue   Wed   Thu   Fri   Sat
     2     3     4     5
     7     8     9     10    11    12
    14    15    16    17    18    19
    21    22    23    24    25    26
    28    29    30    31
             November  2013          
---------------------------------------------
   Sun   Mon   Tue   Wed   Thu   Fri   Sat
     2
     4     5     6     7     8     9
    11    12    13    14    15    16
    18    19    20    21    22    23
    25    26    27    28    29    30
             December  2013          
---------------------------------------------
   Sun   Mon   Tue   Wed   Thu   Fri   Sat
     2     3     4     5     6     7
     9     10    11    12    13    14
    16    17    18    19    20    21
    23    24    25    26    27    28
    30    31

Of course, it is also possible for users to print a calendar for a particular month if they want to

For example: the calendar for January 2014


 day      one      two      three      four      five      six 
     2     3     4    
     6     7     8     9    10    11    
    13    14    15    16    17    18    
    20    21    22    23    24    25    
    27    28    29    30    31

The user can also print a calendar for the current month

Today is: 2013-04-27, then the calendar for the current month is printed as follows:


 day      one      two      three      four      five      six 
     2     3     4     5     6    
     8     9    10    11    12    13    
    15    16    17    18    19    20    
    22    23    24    25    26    :)27(:    
    29    30

Yes, you read that right. There is a sign at 27 indicating the date of the day...

Enter the code section below:

= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =

Code part:

= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =

/ UUUUUU_Test/SRC/com/b510 / date/HongtenDate. Java



 package com.b510.date;

 import java.text.SimpleDateFormat;
 import java.util.Calendar;
 import java.util.Date;
 import java.util.GregorianCalendar;

 /**
  *  A date handler class, in which the constructor is used <code>HongtenDate()</code>, The year will be set by default <br>
  *  while <code>HongtenDate(int year)</code>, You can customize the year <br>
  * 
  * <pre>
  * HongtenDate date = new HongtenDate();
  * </pre>
  * 
  * or<br>
  * 
  * <pre>
  * HongtenDate hd = new HongtenDate(2014);
  * </pre>
  * 
  *  call <code>printCalendar()</code> Can print a year's date <br>
  *  call <code>printCurrentMonth()</code> You can print the date of the current month <br>
  * , Of course, you can call it <br>
  * <code>printMonthOfYear()</code> Set a parameter to print the date of a month <br>
  *  Here are some Suggestions :<br>
  * 
  * <pre>
  * //No parameters, the system defaults to the current year
  * HongtenDate date = new HongtenDate();
  * date.printCalendar();
  * date.printCurrentMonth();
  * date.printMonthOfYear(4);
  * </pre>
  * 
  * or<br>
  * 
  * <pre>
  * //Set it to 2014
  * HongtenDate hd = new HongtenDate(2014);
  * hd.printCurrentMonth();
  * hd.printMonthOfYear(1);
  * </pre>
  * 
  * @date 2013-4-27
  * @author hongten
  * 
  */
 public class HongtenDate {

     // MONTHS
     // ============================================
     public static final String JANUARY = "January";
     public static final String FEBUARY = "Febuary";
     public static final String MARCH = "March";
     public static final String APRIL = "April";
     public static final String MAY = "May";
     public static final String JUN = "Jun";
     public static final String JULY = "July";
     public static final String AUGUST = "August";
     public static final String SEPTERMBER = "Septermber";
     public static final String OCTOBER = "October";
     public static final String NOVEMBER = "November";
     public static final String DECEMBER = "December";

     
     private int year;
     /**
      *  January 1. What day is it (eg:2013-01-01--> Tuesday , so <code>whatDayOnJanuaryOne = 2;</code>)
      */
     private int whatDayOnJanuaryOne;

     // main
     // ======================================
     public static void main(String[] args) throws Exception {
         //No parameters, the system defaults to the current year
         HongtenDate date = new HongtenDate();
         // date.printCalendar();
         date.printCurrentMonth();
         // date.printMonthOfYear(4);

         //Set it to 2014
         HongtenDate hd = new HongtenDate(2014);
         // hd.printCurrentMonth();
         // hd.printMonthOfYear(1);

     }

     //No parameters, the system defaults to the current year
     public HongtenDate() {
         Calendar cal = Calendar.getInstance();
         this.year = cal.get(Calendar.YEAR);
         try {
             setWhatDayOnJanuaryOne(getJanuaryOne(year));
         } catch (Exception e) {
             e.printStackTrace();
         }
     }

     //There are parameters, set the year
     public HongtenDate(int year) {
         this.year = year;
         try {
             setWhatDayOnJanuaryOne(getJanuaryOne(year));
         } catch (Exception e) {
             e.printStackTrace();
         }
     }

     
     public void printMonthOfYear(int mon) throws Exception {
         if (mon < 1 || mon > 12) {
             System.out.println(" The month you enter [" + mon + "] No, please check ....");
             return;
         }
         GregorianCalendar now = new GregorianCalendar();
         //Get a Date object
         SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
         Date date = sdf.parse(year + "-" + mon + "-01");
         //Set the current time
         now.setTime(date);
         //Gets the current month from the date
         int month = now.get(Calendar.MONTH);
         //Set the date of now to 1
         now.set(Calendar.DAY_OF_MONTH, 1);
         //Getting now is the day of the week
         int week = now.get(Calendar.DAY_OF_WEEK);
         //Print the calendar header label
         System.out.println(" day t one t two t three t four t five t six ");
         //Print the space before the current date
         for (int i = Calendar.SUNDAY; i < week; i++) {
             System.out.print("t");
         }
         //Print calendar body
         while (now.get(Calendar.MONTH) == month) {
             int day = now.get(Calendar.DAY_OF_MONTH);
             //Align the output calendars with a space for those less than 10
             if (day < 10) {
                 System.out.print(" " + day + "t");
             } else {
                 System.out.print("" + day + "t");
             }
             //If it's a Saturday, do a line break
             if (week == Calendar.SATURDAY) {
                 System.out.println();
             }
             //After each output date, increment the date by one day
             now.add(Calendar.DAY_OF_MONTH, 1);
             //Regain the day of the week
             week = now.get(Calendar.DAY_OF_WEEK);
         }
     }

     
     public void printCurrentMonth() {
         GregorianCalendar now = new GregorianCalendar();
         //Get a Date object
         Date date = new Date();
         //Set the current time
         now.setTime(date);
         //Gets the current day from the date
         int toDay = now.get(Calendar.DAY_OF_MONTH);
         //Gets the current month from the date
         int month = now.get(Calendar.MONTH);
         //Set the date of now to 1
         now.set(Calendar.DAY_OF_MONTH, 1);
         //Getting now is the day of the week
         int week = now.get(Calendar.DAY_OF_WEEK);
         //Print the calendar header label
         System.out.println(" day t one t two t three t four t five t six ");
         //Print the space before the current date
         for (int i = Calendar.SUNDAY; i < week; i++) {
             System.out.print("t");
         }
         //Print calendar body
         while (now.get(Calendar.MONTH) == month) {
             int day = now.get(Calendar.DAY_OF_MONTH);
             //Align the output calendars with a space for those less than 10
             if (day < 10) {
                 //If it is the current date, mark it
                 if (day == toDay) {
                     System.out.print(":)" + day + "(:t");
                 } else {
                     System.out.print(" " + day + "t");
                 }
             } else {
                 //If it is the current date, mark it
                 if (day == toDay) {
                     System.out.print(":)" + day + "(:t");
                 } else {
                     System.out.print("" + day + "t");
                 }
             }
             //If it's a Saturday, do a line break
             if (week == Calendar.SATURDAY) {
                 System.out.println();
             }
             //After each output date, increment the date by one day
             now.add(Calendar.DAY_OF_MONTH, 1);
             //Regain the day of the week
             week = now.get(Calendar.DAY_OF_WEEK);
         }
     }

     
     public int getJanuaryOne(int year) throws Exception {
         int[] weekDays = { 0, 1, 2, 3, 4, 5, 6 };
         Calendar cal = Calendar.getInstance();
         SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
         Date dt = sdf.parse(year + "-01-01");
         cal.setTime(dt);
         int w = cal.get(Calendar.DAY_OF_WEEK) - 1;
         if (w < 0)
             w = 0;
         return weekDays[w];
     }

     
     public void printCalendar() {
         for (int i = 1; i <= 12; i++) {
             String month = getMonth(i);
             printTitle(month);
             //31-day months are printed
             if (i == 1 || i == 3 || i == 5 || i == 7 || i == 8 || i == 10 || i == 12) {
                 print31();
             }
             //The print has a 30-day month
             else if (i == 4 || i == 6 || i == 9 || i == 11) {
                 print30();
             }
             //Print February
             else if (i == 2) {
                 printFebuary();
             }
             System.out.println();
         }
     }

     //Print format
     // ============================================== start
     
     protected void printFebuary() {
         if (this.year % 4 == 0) {
             //A leap year
             printLeapYear();
         } else {
             //Leap year
             printNonleapYear();
         }
     }

     
     private void printLeapYear() {
         for (int j = 1; j <= 29; j++) {
             String tmp = "";
             if (j == 1) {
                 for (int k = 1; k <= this.whatDayOnJanuaryOne % 7; k++) {
                     tmp = tmp + "      ";
                 }
                 tmp = tmp + "   " + j + "  ";
                 if (this.whatDayOnJanuaryOne == 6) {
                     System.out.println(tmp);
                 } else {
                     System.out.print(tmp);
                 }
             } else if (j > 1 && j < 29) {

                 if ((this.whatDayOnJanuaryOne + j) % 7 == 0) {
                     System.out.println("   " + j);
                 } else {
                     if (j < 10) {
                         System.out.print("   " + j + "  ");
                     } else {
                         System.out.print("   " + j + " ");
                     }
                 }
             } else if (j == 29) {
                 System.out.println("   " + j);
                 this.whatDayOnJanuaryOne = ((this.whatDayOnJanuaryOne + j) % 7);
             }
         }
     }

     
     private void printNonleapYear() {
         for (int j = 1; j <= 28; j++) {
             String tmp = "";
             if (j == 1) {
                 for (int k = 1; k <= this.whatDayOnJanuaryOne % 7; k++) {
                     tmp = tmp + "      ";
                 }
                 tmp = tmp + "   " + j + "  ";
                 if (this.whatDayOnJanuaryOne == 6) {
                     System.out.println(tmp);
                 } else {
                     System.out.print(tmp);
                 }
             } else if (j > 1 && j < 28) {

                 if ((this.whatDayOnJanuaryOne + j) % 7 == 0) {
                     System.out.println("   " + j);
                 } else {
                     if (j < 10) {
                         System.out.print("   " + j + "  ");
                     } else {
                         System.out.print("   " + j + " ");
                     }
                 }
             } else if (j == 28) {
                 System.out.println("   " + j);
                 this.whatDayOnJanuaryOne = ((this.whatDayOnJanuaryOne + j) % 7);
             }
         }
     }

     
     protected void print30() {
         for (int j = 1; j <= 30; j++) {
             String tmp = "";
             if (j == 1) {
                 for (int k = 1; k <= this.whatDayOnJanuaryOne % 7; k++) {
                     tmp = tmp + "      ";
                 }
                 tmp = tmp + "   " + j + "  ";
                 if (this.whatDayOnJanuaryOne == 6) {
                     System.out.println(tmp);
                 } else {
                     System.out.print(tmp);
                 }
             } else if (j > 1 && j < 30) {

                 if ((this.whatDayOnJanuaryOne + j) % 7 == 0) {
                     System.out.println("   " + j);
                 } else {
                     if (j < 10) {
                         System.out.print("   " + j + "  ");
                     } else {
                         System.out.print("   " + j + " ");
                     }
                 }
             } else if (j == 30) {
                 System.out.println("   " + j);
                 this.whatDayOnJanuaryOne = ((this.whatDayOnJanuaryOne + j) % 7);
             }
         }
     }

     
     protected void print31() {
         for (int j = 1; j <= 31; j++) {
             String tmp = "";
             if (j == 1) {
                 for (int k = 1; k <= this.whatDayOnJanuaryOne % 7; k++) {
                     tmp = tmp + "      ";
                 }
                 tmp = tmp + "   " + j + "  ";
                 if (this.whatDayOnJanuaryOne == 6) {
                     System.out.println(tmp);
                 } else {
                     System.out.print(tmp);
                 }
             } else if (j > 1 && j < 31) {

                 if ((this.whatDayOnJanuaryOne + j) % 7 == 0) {
                     System.out.println("   " + j);
                 } else {
                     if (j < 10) {
                         System.out.print("   " + j + "  ");
                     } else {
                         System.out.print("   " + j + " ");
                     }
                 }
             } else if (j == 31) {
                 System.out.println("   " + j);
                 this.whatDayOnJanuaryOne = ((this.whatDayOnJanuaryOne + j) % 7);
             }
         }
     }

     
     protected void printTitle(String month) {
         System.out.println("             " + month + "  " + this.year + "          ");
         System.out.println("---------------------------------------------");
         System.out.println("   Sun   Mon   Tue   Wed   Thu   Fri   Sat");
     }

     //Print format
     // ============================================== end

     
     public String getMonth(int m) {
         String month = "";
         switch (m) {
         case 1:
             month = JANUARY;
             break;
         case 2:
             month = FEBUARY;
             break;
         case 3:
             month = MARCH;
             break;
         case 4:
             month = APRIL;
             break;
         case 5:
             month = MAY;
             break;
         case 6:
             month = JUN;
             break;
         case 7:
             month = JULY;
             break;
         case 8:
             month = AUGUST;
             break;
         case 9:
             month = SEPTERMBER;
             break;
         case 10:
             month = OCTOBER;
             break;
         case 11:
             month = NOVEMBER;
             break;
         case 12:
             month = DECEMBER;
             break;
         }
         return month;
     }

     public int getYear() {
         return year;
     }

     public void setYear(int year) {
         this.year = year;
     }

     public int getWhatDayOnJanuaryOne() {
         return whatDayOnJanuaryOne;
     }

     public void setWhatDayOnJanuaryOne(int whatDayOnJanuaryOne) {
         this.whatDayOnJanuaryOne = whatDayOnJanuaryOne;
     }

 }


Related articles: