私の入力文字列の日付は次のとおりです。
String date = "1/13/2012";
私は次のように月を取得しています:
SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy");
Date convertedDate = dateFormat.parse(date);
String month = new SimpleDateFormat("MM").format(convertedDate);
しかし、指定された文字列の日付で月の最後のカレンダー日を取得するにはどうすればよいですか?
例:String "1/13/2012"
の場合、出力は"1/31/2012"
でなければなりません。
convertedDate.getMonth().length(convertedDate.isLeapYear())
を使用して、convertedDate
はLocalDate
のインスタンスです。
String date = "1/13/2012";
LocalDate convertedDate = LocalDate.parse(date, DateTimeFormatter.ofPattern("M/d/yyyy"));
convertedDate = convertedDate.withDayOfMonth(
convertedDate.getMonth().length(convertedDate.isLeapYear()));
Java.util.Calendar
のgetActualMaximum
メソッドを使用して:
String date = "1/13/2012";
SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy");
Date convertedDate = dateFormat.parse(date);
Calendar c = Calendar.getInstance();
c.setTime(convertedDate);
c.set(Calendar.DAY_OF_MONTH, c.getActualMaximum(Calendar.DAY_OF_MONTH));
これはあなたのニーズのように見えます:
http://obscuredclarity.blogspot.de/2010/08/get-last-day-of-month-date-object-in.html
コード:
import Java.text.DateFormat;
import Java.text.DateFormat;
import Java.text.SimpleDateFormat;
import Java.util.Calendar;
import Java.util.Date;
//Java 1.4+ Compatible
//
// The following example code demonstrates how to get
// a Date object representing the last day of the month
// relative to a given Date object.
public class GetLastDayOfMonth {
public static void main(String[] args) {
Date today = new Date();
Calendar calendar = Calendar.getInstance();
calendar.setTime(today);
calendar.add(Calendar.MONTH, 1);
calendar.set(Calendar.DAY_OF_MONTH, 1);
calendar.add(Calendar.DATE, -1);
Date lastDayOfMonth = calendar.getTime();
DateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
System.out.println("Today : " + sdf.format(today));
System.out.println("Last Day of Month: " + sdf.format(lastDayOfMonth));
}
}
出力:
Today : 2010-08-03
Last Day of Month: 2010-08-31
Java 8 Java.time.LocalDateを使用して
String date = "1/13/2012";
LocalDate lastDayOfMonth = LocalDate.parse(date,DateTimeFormatter.ofPattern("M/dd/yyyy"));
.with(TemporalAdjusters.lastDayOfMonth());
Java 8
DateTime
/LocalDateTime
の場合:
String dateString = "01/13/2012";
DateTimeFormatter dateFormat = DateTimeFormatter.ofPattern("MM/dd/yyyy", Locale.US);
LocalDate date = LocalDate.parse(dateString, dateFormat);
ValueRange range = date.range(ChronoField.DAY_OF_MONTH);
Long max = range.getMaximum();
LocalDate newDate = date.withDayOfMonth(max.intValue());
System.out.println(newDate);
OR
String dateString = "01/13/2012";
DateTimeFormatter dateFormat = DateTimeFormatter.ofPattern("MM/dd/yyyy", Locale.US);
LocalDate date = LocalDate.parse(dateString, dateFormat);
LocalDate newDate = date.withDayOfMonth(date.getMonth().length(date.isLeapYear()));
System.out.println(newDate);
出力:
2012-01-31
日付文字列に時間情報がある場合は、
LocalDateTime
の代わりにLocalDate
を使用する必要があります。 I.E.2015/07/22 16:49
YearMonth // Represent the year and month, without a date and without a time zone.
.from( // Extract the year and month from a `LocalDate` (a year-month-day).
LocalDate // Represent a date without a time-of-day and without a time zone.
.parse( // Get a date from an input string.
"1/13/2012" , // Poor choice of format for a date. Educate the source of your data about the standard ISO 8601 formats to be used when exchanging date-time values as text.
DateTimeFormatter.ofPattern( "M/d/uuuu" ) // Specify a formatting pattern by which to parse the input string.
) // Returns a `LocalDate` object.
) // Returns a `YearMonth` object.
.atEndOfMonth() // Determines the last day of the month for that particular year-month, and returns a `LocalDate` object.
.toString() // Generate text representing the value of that `LocalDate` object using standard ISO 8601 format.
この コードはIdeOne.com でライブ実行されます。
2012-01-31
YearMonth
YearMonth
クラスはこれを簡単にします。 atEndOfMonth
メソッドは、LocalDate
を返します。 2月のうるう年が考慮されます。
最初に、文字列入力に一致するフォーマットパターンを定義します。
DateTimeFormatter f = DateTimeFormatter.ofPattern( "M/d/uuuu");
そのフォーマッタを使用して、文字列入力からLocalDate
を取得します。
String s = "1/13/2012" ;
LocalDate ld = LocalDate.parse( "1/13/2012" , f ) ;
次に、YearMonth
オブジェクトを抽出します。
YearMonth ym = YearMonth.from( ld ) ;
YearMonth
に、その年の月の最後の日を決定するよう依頼し、2月の Leap Year を考慮します。
LocalDate endOfMonth = ym.atEndOfMonth() ;
その日付を表すテキストを標準ISO 8601形式で生成します。
String output = endOfMonth.toString() ;
Java.time フレームワークは、Java 8以降に組み込まれています。これらのクラスは、 Java.util.Date
、 Calendar
などの厄介な古い legacy 日時クラスに取って代わります。 & SimpleDateFormat
。
Joda-Time プロジェクトは、現在 保守モード であり、 Java.time クラス。
詳細については、 Oracle Tutorial を参照してください。また、Stack Overflowで多くの例と説明を検索してください。仕様は JSR 310 です。
Java.timeオブジェクトをデータベースと直接交換できます。 JDBC 4.2 / 以降に準拠する JDBCドライバー を使用します。文字列やJava.sql.*
クラスは必要ありません。
Java.timeクラスはどこで入手できますか?
ThreeTen-Extra プロジェクトは、Java.timeを追加のクラスで拡張します。このプロジェクトは、Java.timeに将来追加される可能性のある証明の場です。 Interval
、 YearWeek
、 YearQuarter
、 more 。
最も簡単な方法は、新しいGregorianCalendar
インスタンスを構築することです。以下を参照してください。
Calendar cal = new GregorianCalendar(2013, 5, 0);
Date date = cal.getTime();
DateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
System.out.println("Date : " + sdf.format(date));
出力:
Date : 2013-05-31
注意:
monthカレンダーのMONTHカレンダーフィールドの設定に使用される値。月の値は0から始まります(例: 1月は0。
Java 8以降:
import Java.time.LocalDate;
import Java.time.Year;
static int LastDayOfMonth(int Y, int M) {
return LocalDate.of(Y, M, 1).getMonth().length(Year.of(Y).isLeap());
}
バジル・ブールのコメントの対象
import Java.time.YearMonth;
int LastDayOfMonth = YearMonth.of(Y, M).lengthOfMonth();
Java 8の plusMonths および minusDays メソッドを使用できます。
// Parse your date into a LocalDate
LocalDate parsed = LocalDate.parse("1/13/2012", DateTimeFormatter.ofPattern("M/d/yyyy"));
// We only care about its year and month, set the date to first date of that month
LocalDate localDate = LocalDate.of(parsed.getYear(), parsed.getMonth(), 1);
// Add one month, subtract one day
System.out.println(localDate.plusMonths(1).minusDays(1)); // 2012-01-31
public static String getLastDayOfMonth(int year, int month) throws Exception{
DateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date date = sdf.parse(year+"-"+(month<10?("0"+month):month)+"-01");
Calendar calendar = Calendar.getInstance();
calendar.setTime(date);
calendar.add(Calendar.MONTH, 1);
calendar.set(Calendar.DAY_OF_MONTH, 1);
calendar.add(Calendar.DATE, -1);
Date lastDayOfMonth = calendar.getTime();
return sdf.format(lastDayOfMonth);
}
public static void main(String[] args) throws Exception{
System.out.println("Last Day of Month: " + getLastDayOfMonth(2017, 1));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2017, 2));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2017, 3));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2017, 4));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2017, 5));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2017, 6));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2017, 7));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2017, 8));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2017, 9));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2017, 10));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2017, 11));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2017, 12));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2018, 1));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2018, 2));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2018, 3));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2010, 2));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2011, 2));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2012, 2));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2013, 2));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2014, 2));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2015, 2));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2016, 2));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2017, 2));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2018, 2));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2019, 2));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2020, 2));
System.out.println("Last Day of Month: " + getLastDayOfMonth(2021, 2));
}
出力:
月の最終日:2017-01-31
最終月:2017-02-28
月の最終日:2017-03-31
月の最終日:2017-04-30
最終月:2017-05-31
最終日:2017-06-30
月の最終日:2017-07-31
月の最終日:2017-08-31
月の最終日:2017-09-30
月の最終日:2017-10-31
最終月:2017-11-30
月の最終日:2017-12-31
月の最終日:2018-01-31
月の最終日:2018-02-28
月の最終日:2018-03-31
月の最終日:2010-02-28
月の最終日:2011-02-28
最終月:2012-02-29
月の最終日:2013-02-28
月の最終日:2014-02-28
最終日:2015-02-28
月の最終日:2016-02-29
最終月:2017-02-28
月の最終日:2018-02-28
月の最終日:2019-02-28
月の最終日:2020-02-29
月の最終日:2021-02-28
次のコードを使用して、月の最終日を取得できます
public static String getLastDayOfTheMonth(String date) {
String lastDayOfTheMonth = "";
SimpleDateFormat formatter = new SimpleDateFormat("dd-MM-yyyy");
try{
Java.util.Date dt= formatter.parse(date);
Calendar calendar = Calendar.getInstance();
calendar.setTime(dt);
calendar.add(Calendar.MONTH, 1);
calendar.set(Calendar.DAY_OF_MONTH, 1);
calendar.add(Calendar.DATE, -1);
Java.util.Date lastDay = calendar.getTime();
lastDayOfTheMonth = formatter.format(lastDay);
} catch (ParseException e) {
e.printStackTrace();
}
return lastDayOfTheMonth;
}
GregorianCalendar
を使用します。オブジェクトの日付を設定し、getActualMaximum(Calendar.DAY_IN_MONTH)
を使用します。
http://docs.Oracle.com/javase/7/docs/api/Java/util/GregorianCalendar.html#getActualMaximum%28int%29 (ただしJavaでも同じでした) 1.4)