当前位置: 技术问答>java相关
Double to String?
来源: 互联网 发布时间:2015-01-16
本文导语: 例如:Double 2/3 怎样转变成带有三位小数的String。 | import java.text.*; public class number { public static void main(String args[]) { double d = 2/3; DecimalFormat df = new DecimalFormat("###,##0.0...
例如:Double 2/3 怎样转变成带有三位小数的String。
|
import java.text.*;
public class number {
public static void main(String args[]) {
double d = 2/3;
DecimalFormat df = new DecimalFormat("###,##0.000");
System.out.println(df.format(d));
}
}
public class number {
public static void main(String args[]) {
double d = 2/3;
DecimalFormat df = new DecimalFormat("###,##0.000");
System.out.println(df.format(d));
}
}
|
路人甲不是说得很清楚了吗?格式化一下Double就可以了
DecimalFormat df = new DecimalFormat("###,##0.000");
你可以改变"###,##0.000"成你想要的任何形式!
DecimalFormat df = new DecimalFormat("###,##0.000");
你可以改变"###,##0.000"成你想要的任何形式!