0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Javaで「日時を設定する」の動作を確認してみた

Posted at

概要

Javaで「日時を設定する」の動作を確認してみました。以下のページを参考にしました。

実装

以下のファイルを作成しました。

TestCalendar2.java
import java.util.Calendar;

class TestCalendar2{
  public static void main(String args[]){

    Calendar calendar = Calendar.getInstance();

    System.out.println("現在の日時を設定します");
    dispCalendar(calendar);

    System.out.println("-- -- -- -- -- --");

    calendar.set(Calendar.YEAR, 2005);
    System.out.println("年を2005年に設定します");
    dispCalendar(calendar);

    System.out.println("-- -- -- -- -- --");

    calendar.set(2005, 10, 25);
    System.out.println("年月日を2005年11月25日に設定します");
    dispCalendar(calendar);

    System.out.println("-- -- -- -- -- --");

    calendar.set(2005, 10, 25, 14, 18);
    System.out.println("日時を2005年11月25日14時18分に設定します");
    dispCalendar(calendar);
  }

  private static void dispCalendar(Calendar calendar){
    String[] week_name = {"日曜日", "月曜日", "火曜日", 
                          "水曜日", "木曜日", "金曜日", "土曜日"};

    int year = calendar.get(Calendar.YEAR);
    int month = calendar.get(Calendar.MONTH) + 1;
    int day = calendar.get(Calendar.DATE);
    int hour = calendar.get(Calendar.HOUR_OF_DAY);
    int minute = calendar.get(Calendar.MINUTE);
    int second = calendar.get(Calendar.SECOND);
    int week = calendar.get(Calendar.DAY_OF_WEEK) - 1;

    System.out.println("設定されている日時は");
    System.out.println(year + "年" + month + "月" + day + "日");
    System.out.println("(" + week_name[week] + ")");
    System.out.println(hour + "時" + minute + "分" + second + "秒");
  }
}

以下のコマンドを実行しました。

$ javac TestCalendar2.java 
$ java TestCalendar2 
現在の日時を設定します
設定されている日時は
2023年9月25日
(月曜日)
7時0分41秒
-- -- -- -- -- --
年を2005年に設定します
設定されている日時は
2005年9月25日
(日曜日)
7時0分41秒
-- -- -- -- -- --
年月日を2005年11月25日に設定します
設定されている日時は
2005年11月25日
(金曜日)
7時0分41秒
-- -- -- -- -- --
日時を2005年11月25日14時18分に設定します
設定されている日時は
2005年11月25日
(金曜日)
14時18分41秒

まとめ

何かの役に立てばと。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?