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

【Android】月曜日の日付を取得する

0
Posted at
//今日の日付を取得する
//例:今日(9/3(tue)→9/2(mon)を取得する)

//localDate使用不可のため、カレンダーを使用している
Date today = new Date();
Calendar day = Calendar.getInstance();

//月曜日を取得するメソッド
day.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY);
today = day.getTime();

//String型に整形する(必要に応じて)
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
String strToday = sdf.format(today);
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?