java擷取當月天數,指定年月的天數,指定日期擷取對應星期 .

來源:互聯網
上載者:User

標籤:print   mini   style   ini   port   led   bsp   class   system   

 1 package com.example.administrator.dayofmonth; 2  3 import java.text.SimpleDateFormat; 4 import java.util.Calendar; 5 import java.util.Date; 6  7 /** 8  * Created by 火龍裸先生 on 2017/4/11 0011. 9  */10 11 public class Number_Of_Days {12 13     /**14      * 擷取當月的 天數15      */16     public static int getCurrentMonthDay() {17 18         Calendar a = Calendar.getInstance();19         a.set(Calendar.DATE, 1);20         a.roll(Calendar.DATE, -1);21         int maxDate = a.get(Calendar.DATE);22         return maxDate;23     }24 25     /**26      * 根據 年、月 擷取對應的月份 的 天數27      */28     public static int getDaysByYearMonth(int year, int month) {29 30         Calendar a = Calendar.getInstance();31         a.set(Calendar.YEAR, year);32         a.set(Calendar.MONTH, month - 1);33         a.set(Calendar.DATE, 1);34         a.roll(Calendar.DATE, -1);35         int maxDate = a.get(Calendar.DATE);36         return maxDate;37     }38 39     /**40      * 根據日期 找到對應日期的 星期幾41      */42     public static String getDayOfWeekByDate(String date) {43         String dayOfweek = "-1";44         try {45             SimpleDateFormat myFormatter = new SimpleDateFormat("yyyy-MM-dd");46             Date myDate = myFormatter.parse(date);47             SimpleDateFormat formatter = new SimpleDateFormat("E");48             String str = formatter.format(myDate);49             dayOfweek = str;50 51         } catch (Exception e) {52             System.out.println("錯誤!");53         }54         return dayOfweek;55     }56 57 }

 

java擷取當月天數,指定年月的天數,指定日期擷取對應星期 .

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.