Java 时间日期详细介绍及实例
java 时间日期
概要:
程序就是输入——>处理——>输出。对数据的处理是程序员需要着重注意的地方,快速、高效的对数据进行处理时我们的追求。其中,时间日期的处理又尤为重要和平凡,此次,我将把java中的时间日期处理方式进行简单的解析,为自己以后的学习做一个备忘,也为初学者做一个借鉴。
时间,英文time;日期,英文date;日历,英文calendar。java中注重语义化,也是用以上的名称对时间日期函数和相关类进行命名。
我们将以java自带的时间日期类和其中的处理函数进行分析。
一、与时间日期有关的类。
java.util.date。实现类,其对象具有时间、日期组件。
java.util.calendar。抽象类,其对象具有时间、日期组件。
java.sql.date。实现类,其对象具有日期组件。
java.sql.time。实现类,其对象具有时间组件。
java.sql.timestamp。实现类,其对象具有时间日期组件。
java.text.dateformat。抽象类,其对象格式化时间日期。
java.text.dateformatsymbols。实现类,其对象为格式化时间日期提供参数。
(sun.util.*canlender*.*。system。local。timezone等)
由于jdk的安装并没有给出全部源码,推荐大家获取jdk全部源码:jdk6u23-src.rar jdk7u4-src.rar。
二、类之间的关系。
我们通过图解和部分jdk源代码来说明。
(上图有几处错误,calendar拼写错误。)
以上的图列出了部分常用的类。我们一般会使用的类java.util.date、java.util.calendar、java.sql.timestamp、java.text.dateformat进行时间日期操作,因为他们有完全的时间日期组件和全面的格式化功能。
值得注意的是:java.sql.date没有时间组件!而java.sql.time没有日期组件!再次提醒。什么意思呢?大家请看下面的代码:
public static void main(string[] args) { /* * 以下代码用于向大家展示各个时间日期类对象的包含组件。 */ java.sql.date sqldate = new java.sql.date(system.currenttimemillis()); system.out.println(sqldate.tostring()); // 输出结果:2012-09-01 java.sql.time sqltime = new java.sql.time(system.currenttimemillis()); system.out.println(sqltime.tostring()); // 输出结果:12:35:11 java.sql.timestamp sqltimestamp = new java.sql.timestamp(system.currenttimemillis()); system.out.println(sqltimestamp.tostring()); // 输出结果:2012-09-01 12:36:33.544 java.util.date utildate = new java.util.date(system.currenttimemillis()); system.out.println(utildate.tostring()); // 输出结果:sat sep 01 12:37:34 cst 2012 java.util.calendar cl = java.util.calendar.getinstance(); system.out.println(cl.gettime().tostring()); // 输出结果:sat sep 01 12:39:51 cst 2012 }
可以看到:java.util.date、java.util.calendar、java.sql.timestamp具有的时间日期组件(而且他们具有无参构造方法),java.sql.date和java.sql.time只有时间或日期组件。
为了证实以上言论,我将部分jdk源码贴出来供大家参考。
java.sql.date源代码:
package java.sql; public class date extends java.util.date { // 省略部分代码…… // override all the time operations inherited from java.util.date; /** * this method is deprecated and should not be used because sql date * values do not have a time component. * * @deprecated * @exception java.lang.illegalargumentexception if this method is invoked * @see #sethours */ public int gethours() { throw new java.lang.illegalargumentexception(); } /** * this method is deprecated and should not be used because sql date * values do not have a time component. * * @deprecated * @exception java.lang.illegalargumentexception if this method is invoked * @see #setminutes */ public int getminutes() { throw new java.lang.illegalargumentexception(); } /** * this method is deprecated and should not be used because sql date * values do not have a time component. * * @deprecated * @exception java.lang.illegalargumentexception if this method is invoked * @see #setseconds */ public int getseconds() { throw new java.lang.illegalargumentexception(); } /** * this method is deprecated and should not be used because sql date * values do not have a time component. * * @deprecated * @exception java.lang.illegalargumentexception if this method is invoked * @see #gethours */ public void sethours(int i) { throw new java.lang.illegalargumentexception(); } /** * this method is deprecated and should not be used because sql date * values do not have a time component. * * @deprecated * @exception java.lang.illegalargumentexception if this method is invoked * @see #getminutes */ public void setminutes(int i) { throw new java.lang.illegalargumentexception(); } /** * this method is deprecated and should not be used because sql date * values do not have a time component. * * @deprecated * @exception java.lang.illegalargumentexception if this method is invoked * @see #getseconds */ public void setseconds(int i) { throw new java.lang.illegalargumentexception(); } /** * private serial version unique id to ensure serialization * compatibility. */ static final long serialversionuid = 1511598038487230103l; }
java.sql.time源代码:
// 省略部分源代码…… /** * this method is deprecated and should not be used because sql <code>time</code> * values do not have a year component. * * @deprecated * @exception java.lang.illegalargumentexception if this * method is invoked * @see #setyear */ @deprecated public int getyear() { throw new java.lang.illegalargumentexception(); } /** * this method is deprecated and should not be used because sql <code>time</code> * values do not have a month component. * * @deprecated * @exception java.lang.illegalargumentexception if this * method is invoked * @see #setmonth */ @deprecated public int getmonth() { throw new java.lang.illegalargumentexception(); } /** * this method is deprecated and should not be used because sql <code>time</code> * values do not have a day component. * * @deprecated * @exception java.lang.illegalargumentexception if this * method is invoked */ @deprecated public int getday() { throw new java.lang.illegalargumentexception(); } /** * this method is deprecated and should not be used because sql <code>time</code> * values do not have a date component. * * @deprecated * @exception java.lang.illegalargumentexception if this * method is invoked * @see #setdate */ @deprecated public int getdate() { throw new java.lang.illegalargumentexception(); } /** * this method is deprecated and should not be used because sql <code>time</code> * values do not have a year component. * * @deprecated * @exception java.lang.illegalargumentexception if this * method is invoked * @see #getyear */ @deprecated public void setyear(int i) { throw new java.lang.illegalargumentexception(); } /** * this method is deprecated and should not be used because sql <code>time</code> * values do not have a month component. * * @deprecated * @exception java.lang.illegalargumentexception if this * method is invoked * @see #getmonth */ @deprecated public void setmonth(int i) { throw new java.lang.illegalargumentexception(); } /** * this method is deprecated and should not be used because sql <code>time</code> * values do not have a date component. * * @deprecated * @exception java.lang.illegalargumentexception if this * method is invoked * @see #getdate */ @deprecated public void setdate(int i) { throw new java.lang.illegalargumentexception(); } /** * private serial version unique id to ensure serialization * compatibility. */ static final long serialversionuid = 8397324403548013681l; }
从上面的代码可以看出:java.sql.date和java.sql.time确实是不具有完整组件的!
我们再次利用代码来说明:
public static void main(string[] args) { /* * 以下代码用于向大家展示各个时间日期类对象的包含组件。 */ java.sql.date sqldate = new java.sql.date(system.currenttimemillis()); system.out.println(sqldate.tostring()); // 输出结果:2012-09-01 java.sql.time sqltime = new java.sql.time(system.currenttimemillis()); system.out.println(sqltime.tostring()); // 输出结果:12:35:11 java.sql.timestamp sqltimestamp = new java.sql.timestamp(system.currenttimemillis()); system.out.println(sqltimestamp.tostring()); // 输出结果:2012-09-01 12:36:33.544 java.util.date utildate = new java.util.date(system.currenttimemillis()); system.out.println(utildate.tostring()); // 输出结果:sat sep 01 12:37:34 cst 2012 java.util.calendar cl = java.util.calendar.getinstance(); system.out.println(cl.gettime().tostring()); // 输出结果:sat sep 01 12:39:51 cst 2012 /* * 以下代码用于试验java.sql.date和java.sql.time是否具有完整组件。 */ system.out.println(); try { system.out.println(sqldate.gethours()); } catch (exception e) { system.out.println(e.getmessage()); // 输出 null } try { system.out.println(sqltime.getdate()); } catch (exception e) { system.out.println(e.getmessage()); // 输出 null } }
实验成功,所有给大家一个忠告:在进行数据库时间日期操作时,使用java.sql.timestamp类。
那么很简单,如果您需要在程序中进行完整的时间日期操作,推荐您使用java.util.date+java.text.dateformat。
如果您需要进行复杂或深入的操作,您可以选择java.util.calendar。有人说calendar是date的复杂版本,我觉得说得有一些道理。我们可以通过他们的依赖对象(通过源码文件中引入的外部类)来证实这个说法:
java.util.date:
package java.util; import java.text.dateformat; import java.io.ioexception; import java.io.objectoutputstream; import java.io.objectinputstream; import java.lang.ref.softreference; import sun.util.calendar.basecalendar; import sun.util.calendar.calendardate; import sun.util.calendar.calendarsystem; import sun.util.calendar.calendarutils; import sun.util.calendar.era; import sun.util.calendar.gregorian; import sun.util.calendar.zoneinfo;
java.util.calendar:
package java.util; import java.io.ioexception; import java.io.objectinputstream; import java.io.objectoutputstream; import java.io.optionaldataexception; import java.io.serializable; import java.security.accesscontrolcontext; import java.security.accesscontroller; import java.security.permissioncollection; import java.security.privilegedactionexception; import java.security.privilegedexceptionaction; import java.security.protectiondomain; import java.text.dateformat; import java.text.dateformatsymbols; import java.util.concurrent.concurrenthashmap; import java.util.concurrent.concurrentmap; import sun.util.buddhistcalendar; import sun.util.calendar.zoneinfo; import sun.util.resources.localedata;
java.util.date更多地用到了sun.util.*calendar*.*。而java.util.calendar对他们的依赖则很少,并且calendar中加入了更好的格式化功能等……(sun.util等源码安装jdk不会提供,我在顶部的下载连接中提供了)。
其实说这么多都是废话。对大家有用的东西无非只有两点:一是怎样获得时间日期,二是怎样按照自定义格式显示。
现在我才来讲解以上两点:
大家可以通过java.util.date date = new java.util.date()或者java.util.date date = java.util.calendar.getinstance().gettime()获得java.util.date对象。至少我推荐这样做,和数据库打交道的话就用java.sql.timestamp。
(而实际上jdk是不推荐我们使用java.util.date对象来进行时间日期获取的,我们从java.util.date类方法注释可以看到,基本所有的方法都有@deprecated注解,而方法注释大意则是"从jdk1.1开始,我们推荐您使用calendar的静态成员和对象成员来对时间日期进行操作"。我觉得其中的考虑可能有为了避免歧义吧,毕竟date的意思是日期)
大家可以通过java.text.dateformat或者他的直接实现类java.text.simpledateformat来实现时间日期的格式化。
下面的代码会给大家展示如何格式化时间日期:
public static void main(string[] args) { /* * 以下代码用于向大家展示各个时间日期类对象的包含组件。 */ java.sql.date sqldate = new java.sql.date(system.currenttimemillis()); system.out.println(sqldate.tostring()); // 输出结果:2012-09-01 java.sql.time sqltime = new java.sql.time(system.currenttimemillis()); system.out.println(sqltime.tostring()); // 输出结果:12:35:11 java.sql.timestamp sqltimestamp = new java.sql.timestamp(system.currenttimemillis()); system.out.println(sqltimestamp.tostring()); // 输出结果:2012-09-01 12:36:33.544 java.util.date utildate = new java.util.date(system.currenttimemillis()); system.out.println(utildate.tostring()); // 输出结果:sat sep 01 12:37:34 cst 2012 java.util.calendar cl = java.util.calendar.getinstance(); system.out.println(cl.gettime().tostring()); // 输出结果:sat sep 01 12:39:51 cst 2012 /* * 以下代码用于试验java.sql.date和java.sql.time是否具有完整组件。 */ system.out.println(); try { system.out.println(sqldate.gethours()); } catch (exception e) { system.out.println(e.getmessage()); // 输出 null } try { system.out.println(sqltime.getdate()); } catch (exception e) { system.out.println(e.getmessage()); // 输出 null } /* * 下面的代码给大家展示时间日期的格式化。 */ system.out.println(); java.text.dateformat dateformat = java.text.simpledateformat.getinstance(); // java.util.date原本的格式 system.out.println(utildate.tostring()); // 输出:sat sep 01 13:16:13 cst 2012 // java.util.date格式化后的格式 system.out.println(dateformat.format(sqldate)); // 输出:12-9-1 下午1:16 system.out.println(); // 很多时候以上的结果并不是我们希望的,我们希望更加*、更见简单的操作方式 // 此时,java.text.simpledateformat就成了我们的不二选择 // simpledateformat提供了无参和自定义格式参数的构造方法使我们能够轻松地实现自定义格式化 java.text.simpledateformat simpledateformat = new java.text.simpledateformat("yyyy-mm-dd hh:mm:ss a"); system.out.println(simpledateformat.format(sqldate)); // 输出:2012-09-01 13:20:41 下午 }
(我不是为了占篇幅才贴上来重复代码的哦^_^)
java.text.simpledateformat的format方法使用参数提供了强大的格式化功能(另外,值得一提的是:它的parse方法也提供了强大的字符串转化为date的功能)。您可以参照以下表格进行选择:
(上图有一出错误:m和mm中,前者表示当分钟数小于10会只占用一个输出位,即输出0-9而不会输出00-09)
好了,大家赶紧利用jdk进行时间日期的操作处理吧!
感谢阅读,希望能帮助到大家,谢谢大家,对本站的支持!