公历星期几
我知道这必须在某个地方,但是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GregorianCalendar 由 Locale 决定。
你可以做类似的事情。
GregorianCalendar determines it by Locale.
You could do something like.