如何精确地将毫秒转换为秒

时间:2012-12-30 12:58:55

标签: java precision divide milliseconds

我希望尽可能精确地将毫秒转换为秒(例如1500ms至1.5s,或500ms至0.5s)。

Double.parseDouble(500 / 1000 + "." + 500 % 1000);不是最好的方法:我正在寻找一种方法来从除法运算中得到余数,所以我可以简单地添加余数。

3 个答案:

答案 0 :(得分:69)

当然你只需要:

double seconds = milliseconds / 1000.0;

无需单独手动执行这两个部分 - 您只需要浮点运算,即使用1000.0(作为double字面值)强制执行。 (我假设你的milliseconds值是某种形式的整数。)

请注意,与double一样,您可能无法准确表示结果。如果要将100毫秒表示为0.1秒完全,请考虑使用BigDecimal。 (鉴于它是物理量,并且首先不是100毫秒,double可能是合适的,但是......)

答案 1 :(得分:5)

你为什么不试试

System.out.println(1500/1000.0);
System.out.println(500/1000.0);

答案 2 :(得分:3)

我也有这个问题,不知怎的,我的代码没有提供确切的值,而是以秒为单位将数字四舍五入为0.0(如果毫秒不到1秒)。 帮助我的是将小数加到除法值。

double time_seconds = time_milliseconds / 1000.0;   // add the decimal
System.out.println(time_milliseconds);              // Now this should give you the right value.