当前位置: 代码迷 >> J2SE >> 为什么小弟我的系统获取系统时间方法System.currentTimeMillis()返回一个异常的值
  详细解决方案

为什么小弟我的系统获取系统时间方法System.currentTimeMillis()返回一个异常的值

热度:167   发布时间:2016-04-23 20:20:42.0
为什么我的系统获取系统时间方法System.currentTimeMillis()返回一个错误的值!
   在Y.Daniel Liang《Java语言程序设计》第八版的第二章中。介绍了显示系统的时间的方法:用System.currentTimeMillis()返回一个UNIX时间戳以来的毫秒数。
  由于返回的值是以毫秒为单位的,所以,要我们进行计算是几点几时几分。然而我看了一眼算法,写出的程序,返回的值是错误的。
package Demo.book;

public class ShowCurrentTime {

/**
 * @显示当前时间
 * @2014.9.3
 */
public static void main(String[] args) {
// TODO Auto-generated method stub
//获得系统的时间,单位为毫秒,转换为妙
long totalMilliSeconds = System.currentTimeMillis();
long totalSeconds = totalMilliSeconds / 1000;

//求出现在的秒
long currentSecond = totalSeconds % 60;

//求出现在的分
long totalMinutes = totalSeconds / 60;
long currentMinute = totalMinutes % 60;

//求出现在的小时
long totalHour = totalMinutes / 60;
long currentHour = totalHour % 24;

//显示时间
System.out.println("总毫秒为: " + totalMilliSeconds);
System.out.println(currentHour + ":" + currentMinute + ":" + currentSecond + " GMT");
}

}


总毫秒为: 1409721840880
5:24:0 GMT


我电脑的真是时间是:13:24:0

开始我以为是算法算错了,后来我用计算器(widows自带计算器)算了一下。
1409721840880==5:24:0
是我算法错了,还是得到的毫秒错了?
还有就是:听说BIOS保存着当前计算机的时间,可以读这个时间么?用的方法是书上提供的这种方法么?
------解决方案--------------------
获取出来的时间是从1970年1月1日开始计算的。

Long time = System.currentTimeMillis();
        Date d = new Date(time);
        System.out.println(d.getHours());
        System.out.println(d.getMinutes());
        System.out.println(d.getSeconds());
用上面的代码可以获取到时分秒
------解决方案--------------------
这种原因是由时区引起的,看看下面这个会自动转换好的

package demo.spli;

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;


public class ShowCurrentTime {

/**
 * @显示当前时间
 * @2014.9.3
 */
public static void main(String[] args) {
// TODO Auto-generated method stub
//获得系统的时间,单位为毫秒,转换为妙
long totalMilliSeconds = System.currentTimeMillis();

 DateFormat dateFormatterChina = DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM);//格式化输出
  TimeZone timeZoneChina = TimeZone.getTimeZone("Asia/Shanghai");//获取时区 这句加上,很关键。
  dateFormatterChina.setTimeZone(timeZoneChina);//设置系统时区
long totalSeconds = totalMilliSeconds / 1000;

//求出现在的秒
long currentSecond = totalSeconds % 60;

//求出现在的分
long totalMinutes = totalSeconds / 60;
long currentMinute = totalMinutes % 60;

//求出现在的小时
long totalHour = totalMinutes / 60;
long currentHour = totalHour % 24;

//显示时间
System.out.println("总毫秒为: " + totalMilliSeconds);
System.out.println(currentHour + ":" + currentMinute + ":" + currentSecond + " GMT");


Date nowTime = new Date(System.currentTimeMillis());
System.out.println(System.currentTimeMillis());
  SimpleDateFormat sdFormatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:dd");
  String retStrFormatNowDate = sdFormatter.format(nowTime);
  
  System.out.println(retStrFormatNowDate);
}

}

------解决方案--------------------
这是时区的原因,代码获取的是GMT+0的小时数。而中国在GMT+8,也就是加上8,就是中国的时间了。
------解决方案--------------------
系统给出的是GMT 格林尼治事件,我们是东八区,快了8个小时,结果对的。
------解决方案--------------------
有时差啊,不是全球这么多地区,不可能每个地区每时每刻的时间都一样
  相关解决方案