: AA37 D608 DFBF CB01.
, 64- 129407978957060010. , , "little-endian": 01CB BFDF 08D6 37AA.
, :
byte[] data = new byte[] { (byte) 0xAA, (byte) 0x37, (byte) 0xD6,
(byte) 0x08, (byte) 0xDF, (byte) 0xBF, (byte) 0xCB, (byte) 0x01 };
long val = 0;
for(int i=7;i>=0;i--) {
val <<= 8;
val += 0xff & data[i];
}
val /= 10000;
Calendar calend = Calendar.getInstance();
calend.set(1601,0,01,00,00,00);
calend.set(Calendar.MILLISECOND, 0);
val += calend.getTimeInMillis();
calend.setTimeInMillis(val);
DateFormat df = DateFormat.getDateTimeInstance();
System.out.println(df.format(calend.getTime()));