我想在 android 中计算两次的差异:例如 Date now 和 1356033600000 ->timestamp from location.getTime() 之间的差异
= 2 分钟前
我只需要几分钟!我该怎么做?
我通过 json 获得客户端时间。客户时间 = 1356033600000
String clienttime = e.getString("clienttime");
long mTime = (System.currentTimeMillis() - Long.valueOf(clienttime).longValue()) / (60 * 1000);