- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
Display day number with SimpleDateFormat('d') in Java
To display the day number, use the SimpleDateFormat('d') as shown below −
Format f = new SimpleDateFormat("d"); String strDay = f.format(new Date()); System.out.println("Day Number = "+strDay);
Since, we have used the Format and SimpleDateFormat class above, therefore import the following packages. With that, we have also used the Date −
import java.text.Format; import java.text.SimpleDateFormat; import java.util.Date;
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("dd/MMMM/yyyy hh:mm:s"); System.out.println("Today's date = "+simpleformat.format(cal.getTime())); // current time Format f = new SimpleDateFormat("HH.mm.ss Z"); String strResult = f.format(new Date()); System.out.println("Time = "+strResult); // displaying day number f = new SimpleDateFormat("d"); String strDay = f.format(new Date()); System.out.println("Day Number = "+strDay); // displaying hour f = new SimpleDateFormat("H"); String strHour = f.format(new Date()); System.out.println("Current Hour = "+strHour); // displaying minutes f = new SimpleDateFormat("mm"); String strMinute = f.format(new Date()); System.out.println("Current Minutes = "+strMinute); // displaying seconds f = new SimpleDateFormat("ss"); String strSeconds = f.format(new Date()); System.out.println("Current Seconds = "+strSeconds); } }
Output
Today's date = 26/November/2018 08:57:31 Time = 08.57.31 +0000 Day Number = 26 Current Hour = 8 Current Minutes = 57 Current Seconds = 31
- Related Articles
- Display the day in week using SimpleDateFormat('E') in Java
- Display minutes with SimpleDateFormat('mm') in Java
- Display seconds with SimpleDateFormat('ss') in Java
- Display year with SimpleDateFormat('yyyy') in Java
- Display three letter-month value with SimpleDateFormat('MMM') in Java
- SimpleDateFormat('zzzz') in Java
- Format date with SimpleDateFormat('MM/dd/yy') in Java
- Display the month number with SimpleDateFormat(“M”) in Java
- SimpleDateFormat('E, dd MMM yyyy HH:mm:ss Z') in Java
- Display hour with SimpleDateFormat(“H”) in Java
- Display minutes with SimpleDateFormat(“m”) in Java
- Display today’s date in Java with SimpleDateFormat
- Display hour with SimpleDateFormat(“hh”) in Java
- Display seconds with SimpleDateFormat(“s”) in Java
- Display time zone with SimpleDateFormat(“z”) in Java

Advertisements