标签:java currenttimemillis date time
测试:
效果:
System.currentTimeMillis();
currentTimeMillis()返回以毫秒为单位的当前时间,返回的是当前时间与协调世界时 1970 年 1 月 1 日午夜之间的时间差(以毫秒为单位测量)。注意,当返回值的时间单位是毫秒时,值的粒度取决于基础操作系统,并且粒度可能更大。例如,许多操作系统以几十毫秒为单位测量时间。
主要用法:
(1)用来测试程序的运行时间:
如图中所示
(2)控制线程时间,刷新屏幕频率:
time1 = System.currentTimeMillis(); ------程代码段------ time2 = System.currentTimeMillis(); if (time2 - time1 < 60) { try { Thread.sleep(60 - (time2 - time1)); } catch (InterruptedException e) { } }
public String getName(){ Stringdate1 = null; SimpleDateFormatsdf1 = new SimpleDateFormat("yyyyMMddHHmmssSSS"); date1= sdf1.format(new Date(System.currentTimeMillis()))+".txt"; return date1; }
long currentTime = System.currentTimeMillis(); SimpleDateFormat formatter = new SimpleDateFormat("yyyy年-MM月dd日-HH时mm分ss秒") Date date = new Date(currentTime); System.out.println(formatter.format(date)); 运行结果如下: 当前时间:2015年-01月16日-16时42分46秒
java测试方法运行时间 System.currentTimeMillis();
标签:java currenttimemillis date time
原文地址:http://blog.csdn.net/gao_chun/article/details/42778933