- 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
Format Year in yyyy format in Java
To format year in yyyy format is like displaying the entire year. For example, 2018.
Use the yyyy format like this −
SimpleDateFormat("yyyy");
Let us see an example −
// year in yyyy format SimpleDateFormat simpleformat = new SimpleDateFormat("yyyy"); String strYear = simpleformat.format(new Date()); System.out.println("Current Year = "+strYear);
Above, we have used the SimpleDateFormat class, therefore the following package is imported −
import java.text.SimpleDateFormat;
The following is an example −
Example
import java.text.Format; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Calendar; public class Demo { public static void main(String[] args) throws Exception { // displaying current date and time Calendar cal = Calendar.getInstance(); SimpleDateFormat simpleformat = new SimpleDateFormat("E, dd MMM yyyy HH:mm:ss"); System.out.println("Date and time = "+simpleformat.format(cal.getTime())); // displaying date simpleformat = new SimpleDateFormat("dd/MMMM/yyyy"); String str = simpleformat.format(new Date()); System.out.println("Current Date = "+str); // year in yyyy format simpleformat = new SimpleDateFormat("yyyy"); String strYear = simpleformat.format(new Date()); System.out.println("Current Year = "+strYear); } }
Output
Date and time = Mon, 26 Nov 2018 11:12:39 Current Date = 26/November/2018 Current Year = 2018
- Related Articles
- Format Year in yy format in Java
- Java Program to format date in mm-dd-yyyy hh:mm:ss format
- Display Date in E MMM dd yyyy format in Java
- How to format year using SimpleDateFormat in Java?
- Extract the month and year in the following format: “mm-yyyy” (month year) along with all columns in MySQL?
- How to format JavaScript date into yyyy-mm-dd format?
- Display Date Time in dd MMM yyyy hh:mm:ss zzz format in Java
- Accepting date strings (MM-dd-yyyy format) using Java regex?
- How to parse Date from String in the format: dd/MM/yyyy to dd/MM/yyyy in java?
- Format Month in MM format in Java
- Format Minutes in mm format in Java
- Format Month in M format in Java
- Format Seconds in s format in Java
- Year Month ("Y") Format Specifier in C#
- How to insert mm/dd/yyyy format dates in MySQL?

Advertisements