

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
LocalDate getMonthValue() method in Java
The month of the year is obtained using getMonthValue() method in the LocalDate class in Java. This method requires no parameter and it returns the month of the year which may be in the range of 1 to 12.
A program that demonstrates this is given as follows −
Example
import java.time.*; public class Main { public static void main(String[] args) { LocalDate ld = LocalDate.parse("2019-02-14"); System.out.println("The LocalDate is: " + ld); System.out.println("The month is: " + ld.getMonthValue()); } }
Output
The LocalDate is: 2019-02-14 The month is: 2
Now let us understand the above program.
First the LocalDate is displayed. Then the month of the year is obtained using getMonthValue() method and this is displayed. A code snippet that demonstrates this is as follows −
LocalDate ld = LocalDate.parse("2019-02-14"); System.out.println("The LocalDate is: " + ld); System.out.println("The month is: " + ld.getMonthValue());
- Related Questions & Answers
- LocalDateTime getMonthValue() method in Java
- MonthDay getMonthValue() method in Java
- LocalDate lengthOfMonth() method in Java
- LocalDate getEra() method in Java
- LocalDate isAfter() method in Java
- LocalDate isBefore() method in Java
- LocalDate isEqual() method in Java
- LocalDate plusMonths() method in Java
- LocalDate plusWeeks() method in Java
- LocalDate plusDays() Method in Java
- LocalDate plusYears() method in Java
- LocalDate minusDays() Method in Java
- LocalDate minusWeeks() Method in Java
- LocalDate minusMonths() Method in Java
- LocalDate now() Method in Java
Advertisements