当前位置: 技术问答>java相关
还是关于时间的问题!
来源: 互联网 发布时间:2015-06-30
本文导语: 我要判断的是特定某天是星期几,比如2002年7月1日,有很多朋友提供了很多的方法,但都是用Calendar指明本日是星期几,比如Calendar.DAY_OF_MONTH等,但这并没有达到我解决问题的核心。希望高手快来帮帮忙,提醒兄弟一...
我要判断的是特定某天是星期几,比如2002年7月1日,有很多朋友提供了很多的方法,但都是用Calendar指明本日是星期几,比如Calendar.DAY_OF_MONTH等,但这并没有达到我解决问题的核心。希望高手快来帮帮忙,提醒兄弟一把,我都头痛好久了呀!谢谢、谢谢!
|
这样不行吗?
|
哈哈,真想不到竟然会是这个样子:
Date(int year, int month, int date) Deprecated. As of JDK version 1.1, replaced by Calendar.set(year + 1900, month, date) or GregorianCalendar(year + 1900, month, date)
|
Parameters:
year - the year minus 1900.
month - the month between 0-11.
date - the day of the month between 1-31.
year - the year minus 1900.
month - the month between 0-11.
date - the day of the month between 1-31.
|
这样不行吗?