I need to find all the weekend dates for a given month and a given year.
Eg: For 01(month), 2010(year), the output should be : 2,3,9,10,16,17,23,24,30,31, all weekend dates.
I need to find all the weekend dates for a given month and a given year.
Eg: For 01(month), 2010(year), the output should be : 2,3,9,10,16,17,23,24,30,31, all weekend dates.
Here is a rough version with comments describing the steps:
You could try like this:
java.time
You can use the Java 8 stream and the java.time package. Here an
IntStream
from1
to the number of days in the given month is generated. This stream is mapped to a stream ofLocalDate
in the given month then filtered to keep Saturday's and Sunday's.We find the same result as the first answer (2 3 9 10 16 17 23 24 30 31).
The Answer by Lokni appears to be correct, with bonus points for using Streams.
EnumSet
My suggestion for improvement:
EnumSet
. This class is an extremely efficient implementation ofSet
. Represented internally as bit vectors, they are fast to execute and taking very little memory.Using an
EnumSet
enables you to soft-code the definition of the weekend by passing in aSet<DayOfWeek>
.Demo using the old-fashioned syntax without Streams. You could adapt Lokni’s answer’s code to use an
EnumSet
in a similar manner.TemporalAdjuster
You can also make use of the
TemporalAdjuster
interface which provides for classes that manipulate date-time values. TheTemporalAdjusters
class (note the plurals
) provides several handy implementations.The ThreeTen-Extra project provides classes working with java.time. This includes a
TemporalAdjuster
implementation,Temporals.nextWorkingDay()
.You can write your own implementation to do the opposite, a
nextWeekendDay
temporal adjuster.About java.time
The java.time framework is built into Java 8 and later. These classes supplant the troublesome old legacy date-time classes such as
java.util.Date
,Calendar
, &SimpleDateFormat
.The Joda-Time project, now in maintenance mode, advises migration to the java.time classes.
To learn more, see the Oracle Tutorial. And search Stack Overflow for many examples and explanations. Specification is JSR 310.
You may exchange java.time objects directly with your database. Use a JDBC driver compliant with JDBC 4.2 or later. No need for strings, no need for
java.sql.*
classes.Where to obtain the java.time classes?
The ThreeTen-Extra project extends java.time with additional classes. This project is a proving ground for possible future additions to java.time. You may find some useful classes here such as
Interval
,YearWeek
,YearQuarter
, and more.