java double转date,Java将双精度转换为日期格式

I have made a little app in ios+firebase, now I am trying to connect android. In ios I save date as double (for example: -242528463.775282), but then I trying to retrieve same double in java it giving me another date.

in IOS - 01.07.2009

in Java - 29.12.1969

double myDouble = date;

long myLong = (long) (myDouble);

System.out.println(myLong);

Date itemDate = new Date(itemLong);

String myDateStr = new SimpleDateFormat("dd-MM-yyyy").format(itemDate);

editTextDate.setText(myDateStr);

Is it possible to convert double to date without converting to long?

解决方案

Since your double represents the number of seconds of you date from now, and the Date constructor in Java is expecting a number of milliseconds since 01-01-1970, you have to multiply your number to get a number of milliseconds (* 1000) and substract that from the current number of milliseconds since 01-01-1970 (System.currentTimeMillis()):

double myDouble = -242528463.775282;

long myLong = System.currentTimeMillis() + ((long) (myDouble * 1000));

System.out.println(myLong);

Date itemDate = new Date(myLong);

String myDateStr = new SimpleDateFormat("dd-MM-yyyy").format(itemDate);

System.out.println(myDateStr);

But, the problem with the way you store your dates is that if you are calling this code today and tomorrow it will not return the same date, as the current time is changing. You should use timeIntervalSince1970 instead of timeIntervalSinceNow.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值