在 Java 中,获取给定月份的所有周末日期
我需要找到给定月份和给定年份的所有周末日期。
例如:对于 01(月)、2010(年),输出应为:2,3,9,10,16,17,23,24,30,31,所有周末日期。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要找到给定月份和给定年份的所有周末日期。
例如:对于 01(月)、2010(年),输出应为:2,3,9,10,16,17,23,24,30,31,所有周末日期。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
这是一个粗略版本,其中包含描述步骤的注释:
Here is a rough version with comments describing the steps:
java.time
您可以使用 Java 8 流< /a> 和 java.time 包。这里有一个
IntStream
< /a> 生成从1
到给定月份的天数。该流映射到的流给定月份中的 LocalDate
然后进行过滤以保留周六和周日。我们发现与第一个答案相同的结果(2 3 9 10 16 17 23 24 30 31)。
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).
Lokni 的回答似乎是正确的,使用 Streams 有奖励积分。
EnumSet
我的改进建议:
EnumSet
。此类是Set 的极其高效的实现
。它们在内部表示为位向量,执行速度快并且占用的内存很少。使用
EnumSet
使您能够软编码通过传入Set
来设置周末。使用没有 Streams 的老式语法进行演示。您可以调整 Lokni 的答案代码 以使用
EnumSet
以类似的方式。TemporalAdjuster
您还可以使用
TemporalAdjuster
接口,提供操作日期时间值的类。TemporalAdjusters
< /a> 类(注意复数s
)提供了几种方便的实现。ThreeTen-Extra 项目提供了使用 java.time 的类。这包括
TemporalAdjuster
实现,Temporals.nextWorkingDay()
。您可以编写自己的实现来执行相反的操作,即
nextWeekendDay
时间调整器。关于 java.time
java.time 框架内置于 Java 8 及更高版本中。这些类取代了麻烦的旧遗留日期时间类,例如
java.util.Date
,日历
, & ;SimpleDateFormat
。Joda-Time 项目,现已在 维护模式,建议迁移到 java.time 类。
要了解更多信息,请参阅 Oracle 教程。并在 Stack Overflow 上搜索许多示例和解释。规范为 JSR 310。
您可以直接与数据库交换java.time对象。使用符合 JDBC 驱动程序 /jeps/170" rel="nofollow noreferrer">JDBC 4.2 或更高版本。不需要字符串,不需要 java.sql.* 类。
从哪里获取 java.time 类?
ThreeTen-Extra 项目通过附加类扩展了 java.time 。该项目是 java.time 未来可能添加的内容的试验场。您可能会在这里找到一些有用的类,例如
间隔
,YearWeek
,<代码>YearQuarter,以及更多 。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.你可以这样尝试:
You could try like this: