我的java程序中存在问题。
我正在使用时间戳来对数据库执行查询,但是我得到了错误的时间戳。
在我的虚拟机上,我将日期设置为太平洋时间:
date
Wed Oct 30 09:50:43 PDT 2013
也
timedatectl status
Local time: Wed 2013-10-30 09:52:30 PDT
Universal time: Wed 2013-10-30 16:52:30 UTC
Timezone: US/Pacific (PDT, -0700)
NTP enabled: yes
NTP synchronized: no
RTC in local TZ: no
DST active: yes
Last DST change: DST began at
Sun 2013-03-10 01:59:59 PST
Sun 2013-03-10 03:00:00 PDT
Next DST change: DST ends (the clock jumps one hour backwards) at
Sun 2013-11-03 01:59:59 PDT
Sun 2013-11-03 01:00:00 PST
但是当我的程序执行system.getCurrentMilis()时返回以下时间戳:
2013-10-30 11:47:16.884
我不确定为什么会这样。如果有人能告诉我什么是错的,或者我可以检查什么是真棒
谢谢!
编辑:
//- Get maximum timestamp from previous query
Timestamp maxTimestamp = (new Timestamp( System.currentTimeMillis() ) ;
//- Compute query parameters (see notes above)
Timestamp lowerLimit = new Timestamp( maxTimestamp.getTime() - 500) ;
System.out.println("lowerLimit=" + lowerLimit ) ;
Timestamp upperLimit = new Timestamp( System.currentTimeMillis());
System.out.println("upperLimit=" + upperLimit ) ;
答案 0 :(得分:0)
system.getCurrentMilis()给出了格林威治标准时间1970年开始的长代表量ms。当您将其解析为字符串时,您很可能通过时区和夏令时调整它。