Javaで日付に日数を追加するにはどうすればよいですか?

Susan Sarandon
リリース: 2024-11-13 14:58:02
オリジナル
900 人が閲覧しました

How to Add Days to a Date in Java?

Adding Days to a Date in Java

The SimpleDateFormat class is a concrete implementation of the DateFormat class for formatting and parsing dates in a locale-sensitive manner. It allows the application to format date and time values consistently across different locales.

To add days to a date, we can use the add() method of the Calendar class. The add() method takes a field as the first parameter. The second parameter is the amount of the field to add to the calendar.

Here's an example of how to add 5 days to a date in Java:

SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
Calendar c = Calendar.getInstance();
c.setTime(new Date()); // Using today's date
c.add(Calendar.DATE, 5); // Adding 5 days
String output = sdf.format(c.getTime());
System.out.println(output);
ログイン後にコピー

In this example, we first create a SimpleDateFormat object. Then, we create a Calendar object and set it to the current date using the setTime() method. Next, we use the add() method to add 5 days to the calendar. Finally, we format the new date using the SimpleDateFormat object and print it out.

以上がJavaで日付に日数を追加するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート