5
5

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 5 years have passed since last update.

Javaで現在の日付を表示する

Last updated at Posted at 2018-06-28

Javaプログラミングにおいて、日付型を扱うときに使用する代表的なクラスは以下の通りだ。
― java.util.Date;
― java.text.DateFormat;
― java.text.SimpleDateFormat;

Date クラスを使って取得する場合、引数なしで Date オブジェクトを生成することで現在日時が設定された Date オブジェクトを取得することができます。
出力形式を任意のフォーマットに成型したい場合は、SimpleDateFormat クラスなどを使用します。


Date date=new Date();
        
DateFormat dateFormat=new SimpleDateFormat("yyyy-MM-dd HH:mm");
        
String formattedDate=dateFormat.format(date);
        
System.out.println(formattedDate);

結果:
スケッチ (7).png

5
5
1

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
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?