本文實例講述了Java實現按年月打印日歷功能。分享給大家供大家參考,具體如下:
創新互聯于2013年開始,先為宜豐等服務建站,宜豐等地企業,進行企業商務咨詢服務。為宜豐企業網站制作PC+手機+微官網三網同步一站式服務解決您的所有建站問題。import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; public class CalendarBook { public static void main(String[] args) throws ParseException { CalendarBook cb = new CalendarBook(); cb.printWeekTitle(); cb.printCalendar(2018, 3); } public void printCalendar(int year, int month) throws ParseException { String monthStr; // 格式化月份,因為要轉成yyyyMMdd格式的 if (month < 10) { monthStr = "0" + month; } else { monthStr = month + ""; // 數字跟字符串拼接轉成字符串格式 } String yearMonthStr = year + monthStr; SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd"); Calendar calendarEnd = Calendar.getInstance(); Calendar calendarStart = Calendar.getInstance(); // 根據年份和月份得到輸入月份有多少天 int monthDays = getMonthLastDay(year, month); // 月初的date字符串 String dateStartStr = yearMonthStr + "01"; // 月末的date字符串 String dateEndStr = yearMonthStr + monthDays; Date startDate = sdf.parse(dateStartStr); Date endDate = sdf.parse(dateEndStr); calendarStart.setTime(startDate); calendarEnd.setTime(endDate); // 得到輸入月份有多少周 int weeks = calendarEnd.get(Calendar.WEEK_OF_MONTH); // 得到當月第一天是星期幾,這里周日為第一天,從1開始,周一則為2 int dayOfWeek = calendarStart.get(Calendar.DAY_OF_WEEK); int day = 1; // 當月的第一周做特殊處理,單獨打印一行 for (int i = 1; i <= 7; i++) { if (i >= dayOfWeek) { System.out.print(" " + day + " "); day++; } else { System.out.print(" "); } } System.out.println(); // 開始打印從第二周開始的日期 for (int week = 1; week < weeks; week++) { for (int i = 1; i <= 7; i++) { if (day > monthDays) { break; } if (day < 10) { System.out.print(" " + day + " "); } else { System.out.print(day + " "); } day++; } System.out.println(); } } public int getMonthLastDay(int year, int month) { int monthDay; int[][] day = { { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }, { 0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 } }; if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) { // 閏年 monthDay = day[1][month]; } else { monthDay = day[0][month]; } return monthDay; } public void printWeekTitle() { System.out.println("日" + " " + "一" + " " + "二" + " " + "三" + " " + "四" + " " + "五" + " " + "六"); } }
當前題目:Java實現按年月打印日歷功能【基于Calendar】-創新互聯
本文路徑:http://vcdvsql.cn/article28/cdgscp.html
成都網站建設公司_創新互聯,為您提供品牌網站建設、靜態網站、Google、網站策劃、網站改版、網站內鏈
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯