公历星期几

发布于 2024-10-20 16:21:32 字数 114 浏览 1 评论 0原文

我知道这必须在某个地方,但是 GregorianCalendar 类如何确定哪一天是一周的第一天?它是通过区域设置执行此操作,还是保持静态?

我最终想做的是测试以确定是否是美国的周末。有什么指点吗?

I know this has to be out there somewhere, but how does the GregorianCalendar class determine which day is the first day of the week? Does it do this by Locale, or does it remain static?

What I'm ultimately trying to do is test to determine whether it is the weekend in the United States. Any pointers?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

韬韬不绝 2024-10-27 16:21:32

GregorianCalendar 由 Locale 决定。

你可以做类似的事情。

GregorianCalendar cal = new GregorianCalendar(someTimezone, Locale.US);
int day = cal.get(Calendar.DAY_OF_WEEK);
if (day == Calendar.SATURDAY || day == Calendar.SUNDAY) {
// do something interesting
}

GregorianCalendar determines it by Locale.

You could do something like.

GregorianCalendar cal = new GregorianCalendar(someTimezone, Locale.US);
int day = cal.get(Calendar.DAY_OF_WEEK);
if (day == Calendar.SATURDAY || day == Calendar.SUNDAY) {
// do something interesting
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文