How to check whether given date occurred on Friday 13th in Java?



Problem Description :


Write a program in Java that checks whether given date occurred on Friday 13th or not?

Concept :


In this problem we need to check day name and day number (in month) of given date. Day name should be Friday and day number should be 13. The solution is very simple and straightforward. With the help of DAY_OF_WEEK and DAY_OF_MONTH constants of Calendar class that is present in java.util.* package we can easily solve this problem.

Recommended :





Java Program :





Output :


Case 1 :


Output of Java program that checks whether given date occurred on Friday the 13th - case1
Output - Given date not occurred on Friday the 13th

Case 2 :


Output of Java program that checks whether given date occurred on Friday the 13th - case2
Output - Given date occurred on Friday the 13th


Similar Problems :


1) How to check whether given date occurred on Sunday Xth in Java?

- Replace line 35 with  if (calendar.get(Calendar.DAY_OF_WEEK) == 1 && calendar.get(Calendar.DAY_OF_MONTH) == X) {

2) How to check whether given date occurred on Monday Xth in Java?

Replace line 35 with  if (calendar.get(Calendar.DAY_OF_WEEK) == 2 && calendar.get(Calendar.DAY_OF_MONTH) == X) {

3) How to check whether given date occurred on Tuesday Xth in Java?

Replace line 35 with  if (calendar.get(Calendar.DAY_OF_WEEK) == 3 && calendar.get(Calendar.DAY_OF_MONTH) == X) {

4) How to check whether given date occurred on Wednesday Xth in Java?

Replace line 35 with  if (calendar.get(Calendar.DAY_OF_WEEK) == 4 && calendar.get(Calendar.DAY_OF_MONTH) == X) {

5) How to check whether given date occurred on Thursday Xth in Java?

Replace line 35 with  if (calendar.get(Calendar.DAY_OF_WEEK) == 5 && calendar.get(Calendar.DAY_OF_MONTH) == X) {

6) How to check whether given date occurred on Saturday Xth in Java?

Replace line 35 with  if (calendar.get(Calendar.DAY_OF_WEEK) == 7 && calendar.get(Calendar.DAY_OF_MONTH) == X) {

References :





Thank you friends, I hope you have clearly understood the solution of this problem. If you have any doubt, suggestion or query please feel free to comment below. You can also discuss this solution in our forum.

Tags : Date and Time Problems, DateFormat, SimpleDateFormat, String, Calendar, if else statement.

About Author:

I am simple guy with lot of ambitions. My main motive is to share whatever knowledge I have related to programming. With me you can easily learn how to solve any programming problem in Java.You can connect with me on social networking sites also.


Let's Get Connected: Linkedin | Facebook |

How to check whether given date occurred on Friday 13th in Java? How to check whether given date occurred on Friday 13th in Java? Reviewed by Rohit Agarwal on 3/02/2017 Rating: 5

No comments:

Please provide your valuable comments. If you have any suggestion please share with me I will work on it and if you have any question or doubt please ask, don't hesitate. I am your friend, i will clarify all your doubts.

Powered by Blogger.