如何使用Java从UUID中提取日期?

前端之家收集整理的这篇文章主要介绍了如何使用Java从UUID中提取日期?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何将UUID转换为日期格式2011-04-22?

例如,我有这样的UUID

  1. 118ffe80-466b-11e1-b5a5-5732cf729524.

如何将此转换为日期格式?

我试过了

  1. String uuid="118ffe80-466b-11e1-b5a5-5732cf729524";
  2. UUID uid = UUID.fromString(uuid);
  3. long ls=convertTime(uid.timeStamp()); // it returns long value
  4.  
  5. public String convertTime(long time){
  6. System.out.println("====="+time);
  7. Date date = new Date(time);
  8. Format format = new SimpleDateFormat("yyyy/MM/dd");
  9. return format.format(date).toString();
  10. }

输出我得到:4294744/11/02

同样的案例适用于perl

  1. $uuid='ef802820-46b3-11e2-bf3a-47ef6b3e28e2';
  2. $uuid =~ s/-//g;
  3.  
  4. my $timelow = hex substr( $uuid,2 * 0,2 * 4 );
  5. my $timemid = hex substr( $uuid,2 * 4,2 * 2 );
  6. my $version = hex substr( $uuid,2 * 6,1 );
  7. my $timehi = hex substr( $uuid,2 * 6 + 1,2 * 2 - 1 );
  8.  
  9. my $time = ( $timehi * ( 2**16 ) + $timemid ) * ( 2**32 ) + $timelow;
  10. my $epoc = int( $time / 10000000 ) - 12219292800;
  11. my $nano = $time - int( $time / 10000000 ) * 10000000;
  12.  
  13. #$time_date = scalar localtime $epoc;
  14. #print strftime( '%d-%m-%Y %H:%M:%S',localtime($epoc) );
  15. #print "\n Time: ",scalar localtime $epoc," +",$nano / 10000,"ms\n";

解决方法

UUID的javadoc说明了以下关于时间戳记字段的信息:

The 60 bit timestamp value is constructed from the time_low,time_mid,and time_hi fields of this UUID. The resulting timestamp is measured in 100-nanosecond units since midnight,October 15,1582 UTC.

(强调我的)

自1970年1月1日起,Java时间戳记以毫秒为单位.为了从UUID获得有意义的日期,您需要做两件事情:从100ns转换为1ms精度(除以10000),并从1582-10-15转换为1970-01-01,您可以执行通过添加常数值.

WolframAlpha tells us,1582-10-15对应于-12219292800的UNIX时间戳,所以要获得正确的日期,您必须添加12219292800到除以10000后获得的毫秒数.

作为附注:

The timestamp value is only meaningful in a time-based UUID,which has version type 1. If this UUID is not a time-based UUID then this method throws UnsupportedOperationException.

…所以确保你的代码只有遇到类型1 UUID的,或者可以处理它们没有时间戳.

猜你在找的Java相关文章