使用Double.parseDouble(stringValue)将0.0001从字符串转换为double时返回1.0E-4。如何将4位小数位的双精度值设为0.0001。
答案 0 :(得分:2)
您可以使用DecimalFormat来定义应该显示昏迷后的位置。
String stringValue= 0.0001;
DecimalFormat df = new DecimalFormat("##0.###");
df.format(stringValue);
1.0E-4表示1.0 * 10 ^ -4,与0.0001
相同有关DecimalFormat的更多信息,请查看https://developer.android.com/reference/java/text/DecimalFormat.html