- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
LocalDateTime withDayOfMonth() method in Java
An immutable copy of a LocalDateTime with the day of month altered as required is done using the method withDayOfMonth() in the LocalDateTime class in Java. This method requires a single parameter i.e. the day of month that is to be set in the LocalDateTime and it returns the LocalDateTime with the day of month altered as required.
A program that demonstrates this is given as follows −
Example
import java.time.*; public class Main { public static void main(String[] args) { LocalDateTime ldt1 = LocalDateTime.parse("2019-02-18T23:15:30"); System.out.println("The LocalDateTime is: " + ldt1); LocalDateTime ldt2 = ldt1.withDayOfMonth(25); System.out.println("The LocalDateTime with day of month altered is: " + ldt2); } }
Output
The LocalDateTime is: 2019-02-18T23:15:30 The LocalDateTime with day of month altered is: 2019-02-25T23:15:30
Now let us understand the above program.
First the LocalDateTime is displayed. Then the LocalDateTime with the day of month altered to 25 is displayed using the method withDayOfMonth(). A code snippet that demonstrates this is as follows −
LocalDateTime ldt1 = LocalDateTime.parse("2019-02-18T23:15:30"); System.out.println("The LocalDateTime is: " + ldt1); LocalDateTime ldt2 = ldt1.withDayOfMonth(25); System.out.println("The LocalDateTime with day of month altered is: " + ldt2);
Advertisements