我现在花了很长时间,试图在java中转换数字1.2846202978398e + 19,没有任何运气。目前我正在尝试(long)Double.parseDouble(hashes)
,但是这给了9223372036854775807,这显然是不正确的。实际数字应该类似于12855103593745000000。
使用int val = new BigDecimal(stringValue).intValue();
返回-134589568
,因为它无法保存结果。将代码切换为long val = new BigDecimal(hashes).longValue();
会给我-5600541095311551616这也是错误的。
我假设发生了这种情况,原因是双人的大小比较长。
有什么想法吗?
答案 0 :(得分:2)
您是否尝试使用String.format
:
String result = String.format("%.0f", Double.parseDouble("1.2846202978398e+19"));
System.out.println(result);
<强>输出强>
12846202978398000000
修改强>
为什么不使用BigDecimal
进行算术运算,例如:
String str = "1.2846202978398e+19";
BigDecimal d = new BigDecimal(str).multiply(BigDecimal.TEN);
// ^^^^^^^^------example of arithmetic operations
System.out.println(String.format("%.0f", d));
System.out.println(String.format("%.0f", Double.parseDouble(str)));
<强>输出强>
128462029783980000000
12846202978398000000
答案 1 :(得分:2)
您的值超过long
的最大值。在这种情况下,您无法使用long
。
试试
BigDecimal value = new BigDecimal("1.2846202978398e+19");
之后,您可以致电
value.toBigInteger()
或
value.toBigIntegerExact()
如果需要的话。
答案 2 :(得分:0)
怎么样:
In [25]: import math
In [26]: math.asin(y.real)
Out[26]: 0.5200127360815863