TOD时钟时间到java.util.Date或毫秒

时间:2013-02-11 17:12:44

标签: java date time milliseconds

我有一个数据库表,它通过ETL填充大型机的数据。 该表的一列被称为“TOD”,如时间一样。

此列存储以下值: “CAE7631DC43DC686” “CAE7631C4AC6DC0B” “CAE6216DF2BC0D04” “CAE621D8F9916E8E”

所有这些值都在2013年2月10日和2013年2月11日左右。 现在,在大型机上,这是一个时间 - 日期表示(TOD时钟)。

它表示从80.01.10000起以macroseconds(1/1 000 000秒)过去的时间。

我需要的是一个java库/方法/算法实现,可以将这些字符串转换为java.util.Date。

在网上找到这些网站: http://paul.saers.com/Tod_howto.html http://www.longpelaexpertise.com.au/toolsTOD.php

这个页面解释了如何计算它,但对我来说有点太多了。 我确定我会在某个地方犯一些错误。

所以,我的问题是;你知道我可以使用的图书馆(Joda Time?)吗? 我需要将这些值转换为java.util.Date,将Date对象转换为字符串表示形式(如“CAE621D8F9916E8E”)。

提前致谢。

3 个答案:

答案 0 :(得分:4)

在我的用例中,我有一个getter方法直接读取8字节TOD作为字节数组并将其转换为long,但这里要遵守海报:

BigInteger bi = new BigInteger    ("CAE7631DC43DC686", 16); //  no strip off of 686 
long tod = bi2.longValue();

我使用以下内容来避免BigDecimal计算开销:

tod = tod >>> 12;  // remove rightmost 3 bytes and replace with zeros
tod = tod - 2208988800000000l;  // substract 1970
tod = tod/1000; // make millis out of micros
// timeformatter and dateformatter without Joda
SimpleDateFormat timeFormatter = new SimpleDateFormat("HH:mm:ss.SS z Z", Locale.getDefault());
SimpleDateFormat dateFormatter = new SimpleDateFormat("dd.MM.yyyy", Locale.getDefault());
// Display
System.out.println(timeFormatter.format(new Date(tod)));
System.out.println(dateFormatter.format(new Date(tod)));

输出将是:

22:59:46.420 CET +0100

2013年10月2日

答案 1 :(得分:2)

一步一步,使用Joda:

可以找到计算中使用的数据on the website you referred to other reference you gave表示TOD以UTC表示

// we start with your string minus the three last digits
// which are some internal z/Series cruft
BigInteger bi = new BigInteger    ("CAE7631DC43DC", 16); // 686 stripped off
// then, from tables the website we get the TOD value for start of epoch
// here also, minus the three last digits                                 
BigInteger startOfEpoch70 = new BigInteger ("7D91048BCA000", 16); // 000 stripped off
// using that we calculate the offset in microseconds in epoch
BigInteger microsinepoch = bi.subtract(startOfEpoch70);
// and reduce to millis
BigInteger millisinepoch = microsinepoch.divide(new BigInteger("1000"));
// which we convert to a long to feed to Joda
long millisinepochLong = millisinepoch.longValue();
// Et voila, the result in UTC
DateTime result = new DateTime(millisinepochLong).withZone(DateTimeZone.UTC);
// Now, if you want a result in some other timezone, that's equally easy
// with Joda:
DateTime result2 = result.toDateTime(DateTimeZone.forID("EET"));

System.out.println("The result is " + result + " or represented in timezone EET "
                   + result2);

这给出了这个输出:

  

结果是2013-02-10T21:59:46.420Z或以时区表示   EET 2013-02-10T23:59:46.420 + 02:00

我所指的“残酷”解释如下:

  

我们跳过最后12位(通常,MVS使用其中一些位来告诉用什么处理器读取TOD时钟以及LPAR处于活动状态)。

当然,不是残留地从字符串中剪掉这些字节,也可以做

bi = bi.divide(new BigInteger("1000", 16));

除以十六进制1000也将除去最后的12位。

编辑:正如Mehmet在评论中指出的那样,TOD是UTC格式,这意味着应该告知生成的DateTime。为方便起见,我还展示了如何将DateTime转置到另一个时区(以EET为例)

答案 2 :(得分:1)

使用BigInteger解析十六进制日期:

new BigInteger("CAE7631DC43DC686", 16);

然后使用BigInteger提供的各种方法(乘法,...)进行必要的Unix时代转换。