LocalDateTime plusWeeks() method in Java with Examples
The plusWeeks() method of LocalDateTime class is used to return a copy of this date-time with the specified weeks added.
Syntax:
public LocalDateTime plusWeeks(long weeks)
Parameter: It accepts a single parameter weeks which specifies the weeks to add which may be negative.
Return Value: This method returns a LocalDateTime based on this date-time with the weeks added.
Exceptions: The programs throws a DateTimeException which is thrown if the result exceeds the supported weeks range.
Below programs illustrate the YearMonth.plusWeeks() method in Java:
Program 1:
// Program to illustrate the plusWeeks() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { LocalDateTime dt1 = LocalDateTime .parse( "2018-01-11T10:15:30" ); System.out.println( "LocalDateTime with 15 weeks added: " + dt1.plusWeeks( 15 )); } } |
LocalDateTime with 15 weeks added: 2018-04-26T10:15:30
Program 2:
// Program to illustrate the plusWeeks() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { LocalDateTime dt1 = LocalDateTime .parse( "2018-01-11T08:15:30" ); System.out.println( "LocalDateTime with -2 weeks added: " + dt1.plusWeeks(- 2 )); } } |
LocalDateTime with -2 weeks added: 2017-12-28T08:15:30
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.html#plusWeeks(long)
Recommended Posts:
- LocalDate plusWeeks() method in Java with Examples
- ZonedDateTime plusWeeks() method in Java with Examples
- OffsetDateTime plusWeeks() method in Java with examples
- LocalDateTime until() Method in Java with Examples
- LocalDateTime with() Method in Java with Examples
- LocalDateTime plus() method in Java with Examples
- LocalDateTime from() method in Java with Examples
- LocalDateTime now() Method in Java with Examples
- LocalDateTime hashCode() method in Java with Examples
- LocalDateTime getMonthValue() method in Java with Examples
- LocalDateTime withMinute() method in Java with Examples
- LocalDateTime toLocalDate() method in Java with Examples
- LocalDateTime getNano() method in Java with Examples
- LocalDateTime toString() method in Java with Examples
- LocalDateTime withHour() method in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.