如果想要取得系统的时间,可以使用System.currentTimeMillis()方法,例如:<o:p></o:p>
DateDemo.java
1
public
class
DateDemo {
2 public static void main(String[] args) {
3 System.out.println(System.currentTimeMillis());
4 }
5 }
2 public static void main(String[] args) {
3 System.out.println(System.currentTimeMillis());
4 }
5 }
执行结果会显示从<st1:chsdate year="1970" month="1" day="1" islunardate="False" isrocdate="False" w:st="on">1970年1月1日</st1:chsdate>开始到取得系统时间为止所经过的毫秒数,例如1115346430703这个数字,但这样的数字没有人确切了解它的意 义是什么,您可以使用Date类别来让这个数字变的更有意义一些,例如:<o:p></o:p>
DateDemo.java
import
java.util.Date;
public class DateDemo {
public static void main(String[]args) {
Date date = new Date();
System.out.println(date.toString());
System.out.println(date.getTime());
}
}
public class DateDemo {
public static void main(String[]args) {
Date date = new Date();
System.out.println(date.toString());
System.out.println(date.getTime());
}
}
执行的结果如下:<o:p></o:p>
Fri May 06 10:31:13 GMT+08:00 2005
1115346673531
当您生成Date对象时,实际上它会使用System.currentTimeMillis()来取得系统时间,而您使用
toString()方法时,会将取得的<st1:chsdate year="1970" month="1" day="1" islunardate="False" isrocdate="False" w:st="on">1970年1月1日</st1:chsdate>至今的毫秒数转为 dow mon dd hh:mm:ss zzz yyyy的格式,分别是:「星期 月 日 时:分:秒 公元」;使用Date的 getTime()方法则可以取得毫秒数。
如果您想要对日期时间作格式设定,则可以使用DateFormat来作格式化,先来看看它的子类SimpleDateFormat如何使用:<o:p></o:p>
DateDemo.java
import
java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateDemo {
public static void main(String[]args) {
Date date = new Date();
DateFormat dateFormat = new SimpleDateFormat( " EE-MM-dd-yyyy " );
System.out.println(dateFormat.format(date));
}
}
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateDemo {
public static void main(String[]args) {
Date date = new Date();
DateFormat dateFormat = new SimpleDateFormat( " EE-MM-dd-yyyy " );
System.out.println(dateFormat.format(date));
}
}
执行结果:<o:p></o:p>
星期<st1:chsdate year="2005" month="5" day="6" islunardate="False" isrocdate="False" w:st="on">五-05-06</st1:chsdate>-2005
DateFormat会依计算机上的区域设定显示时间格式,EE表示星期,MM表示月份、dd表示日期,而yyyy是公元,每个字符的设定都各有其意义,您
可以参考 SimpleDateFormat 的API说明了解每个字符设定的意义。
您也可以直接从DateFormat指定格式生成DateFormat的实例,例如:<o:p></o:p>
DateDemo.java
import
java.text.DateFormat;
import java.util.Date;
public class DateDemo {
public static void main(String[] args) {
Date date = new Date();
DateFormat shortFormat = DateFormat.getDateTimeInstance(DateFormat.SHORT,
DateFormat.SHORT);
DateFormat mediumFormat = DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM);
DateFormat longFormat = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG);
DateFormat fullFormat = DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL);
System.out.println(shortFormat.format(date));
System.out.println(mediumFormat.format(date));
System.out.println(longFormat.format(date));
System.out.println(fullFormat.format(date));
}
}
<o:p></o:p>
import java.util.Date;
public class DateDemo {
public static void main(String[] args) {
Date date = new Date();
DateFormat shortFormat = DateFormat.getDateTimeInstance(DateFormat.SHORT,
DateFormat.SHORT);
DateFormat mediumFormat = DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM);
DateFormat longFormat = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG);
DateFormat fullFormat = DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL);
System.out.println(shortFormat.format(date));
System.out.println(mediumFormat.format(date));
System.out.println(longFormat.format(date));
System.out.println(fullFormat.format(date));
}
}
在使用 getDateTimeInstance()取得DateFormat实例时,可以指定的参数是日期格式与时间格式,以上所指定的格式依讯息详细度 区分,执行结果如下:<o:p></o:p>
<st1:chsdate year="2005" month="5" day="6" islunardate="False" isrocdate="False" w:st="on">2005/5/6</st1:chsdate> 上午 10:45 |
DateDemo.java
import
java.text.DateFormat;
import java.util.Date;
import java.util.Locale;
public class DateDemo {
public static void main(String[] args) {
Date date = new Date();
Locale locale = new Locale( " en " , " US " );
DateFormat shortFormat = DateFormat.getDateInstance(DateFormat.SHORT,locale);
DateFormat mediumFormat = DateFormat.getDateInstance( DateFormat.MEDIUM,locale);
DateFormat longFormat = DateFormat.getDateInstance(DateFormat.LONG, locale);
DateFormat fullFormat = DateFormat.getDateInstance(DateFormat.FULL, locale);
System.out.println(shortFormat.format(date));
System.out.println(mediumFormat.format(date));
System.out.println(longFormat.format(date));
System.out.println(fullFormat.format(date));
}
}
import java.util.Date;
import java.util.Locale;
public class DateDemo {
public static void main(String[] args) {
Date date = new Date();
Locale locale = new Locale( " en " , " US " );
DateFormat shortFormat = DateFormat.getDateInstance(DateFormat.SHORT,locale);
DateFormat mediumFormat = DateFormat.getDateInstance( DateFormat.MEDIUM,locale);
DateFormat longFormat = DateFormat.getDateInstance(DateFormat.LONG, locale);
DateFormat fullFormat = DateFormat.getDateInstance(DateFormat.FULL, locale);
System.out.println(shortFormat.format(date));
System.out.println(mediumFormat.format(date));
System.out.println(longFormat.format(date));
System.out.println(fullFormat.format(date));
}
}
这边指定了美国的时间显示方式,执行结果如下:<o:p></o:p>
<st1:chsdate year="2005" month="6" day="5" islunardate="False" isrocdate="False" w:st="on">5/6/05</st1:chsdate>
May 6, 2005
May 6, 2005
Friday, May 6, 2005