Warning: include_once(): http:// wrapper is disabled in the server configuration by allow_url_include=0 in /home/users/2/moriya-h5/web/confrage/java/date/date_max/date_max.html on line 2

Warning: include_once(http://www.confrage.com/bin/header.php): failed to open stream: no suitable wrapper could be found in /home/users/2/moriya-h5/web/confrage/java/date/date_max/date_max.html on line 2

Warning: include_once(): Failed opening 'http://www.confrage.com/bin/header.php' for inclusion (include_path='.:/usr/local/php/5.6/lib/php') in /home/users/2/moriya-h5/web/confrage/java/date/date_max/date_max.html on line 2
Calendarクラスで月末を求める(getActualMaximum) | Java | 株式会社CONFRAGE
Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/menu.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/java/date/date_max/date_max.html on line 17

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/menu.php' for inclusion (include_path='.:/usr/local/php/5.6/lib/php') in /home/users/2/moriya-h5/web/confrage/java/date/date_max/date_max.html on line 17
Calendarクラスで月末を求める(getActualMaximum)
Javaでは月末を求めるCalendar#getActualMaximumメソッドが用意されてあります。
Calendarクラスのインスタンスを生成し、setメソッドで日にちを指定してからgetActualMaximum()メソッドを使用します。

package jp.co.confrage;
import java.util.Calendar;
public class Test003 {

    public static void main(String[] args) {
        Calendar cal1 = Calendar.getInstance();
        cal1.set(2011,0,1);
        int max = cal1.getActualMaximum(Calendar.DAY_OF_MONTH);
        System.out.println(max);
    }
}
JavaのCalendarクラスのソースを見ると解りますが、Calendar.DAY_OF_MONTHCalendar.DATEは同じ定数(5)になっていることがわかります。
実行結果は以下のようになります。

31

Back to top

Information

Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/side_bar.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/java/date/date_max/date_max.html on line 74

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/side_bar.php' for inclusion (include_path='.:/usr/local/php/5.6/lib/php') in /home/users/2/moriya-h5/web/confrage/java/date/date_max/date_max.html on line 74

Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/seo.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/java/date/date_max/date_max.html on line 83

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/seo.php' for inclusion (include_path='.:/usr/local/php/5.6/lib/php') in /home/users/2/moriya-h5/web/confrage/java/date/date_max/date_max.html on line 83