在编程中,通常会遇到如何把带有千分符浮点数字符串转换成double类型的小问题。
以下举例说明:
import java.text.*;
...
try {
String s1 = "1,000.00";
String s2 = "100.00";
double d1 = new DecimalFormat().parse(s1).doubleValue();
double d2 = new DecimalFormat().parse(s2).doubleValue();
System.out.println(d1);
System.out.println(d2);
}
catch (ParseException pe) {
System.out.println(pe.getMessage());
pe.printStackTrace();
}
输出结果为:
1000.00
100.00
呵呵~~这就是我要的结果。