JAVA中UTC的使用
文章作者 100test 发表时间 2011:03:17 21:06:29
来源 100Test.Com百考试题网
导读:本文介绍JAVA中UTC的使用,以上工作心得,如有不对请大家指正。
由于使用Date类型在数据库搜索大量数据时效率很低,公司采取使用Long型timecode进行搜索: Calendar calendar=Calendar.getInstance(). Long timecode=calendar.getTimeInMillis(). 但是由于不同机器不同系统的时区设置不同,所以同一时间产生的timecode的值也不同,导致搜索不到准确时间的数据的问题,所以采取如下方式进行解决: //将本地当前时间转换成UTC国际标准时间的毫秒形式 Date time=new Date(). Long timecode=time.UTC(time.getYear(), time.getMonth(), time.getDate(), time.getHours(), time.getMinutes(), time.getSeconds()). //将UTC国际标准时间的毫秒形式转换成本地的时间 Calendar calendar=Calendar.getInstance(). int offset=calendar.get(Calendar.ZONE_OFFSET). int dst=calendar.get(Calendar.DST_OFFSET). calendar.setTimeInMillis(timecode). calendar.add(Calendar.MILLISECOND, -(offset dst)). Date resultDate=calendar.getTime().
编辑特别推荐:
#0000ff>Java中实现浮点数的精确运算
#0000ff>Java中调用本地代码
#0000ff>Java图像的裁剪 缩放
等级免费资料下载
#0000ff>百考试题教育全国计算机等级考试在线测试平台
#0000ff>全国计算机等级考试论坛
#0000ff>2010年9月全国计算机等级考试各科模拟试题冲刺