在Java中将String转换为double


Answers:


471

您可以使用Double.parseDouble()将转换Stringdouble

String text = "12.34"; // example String
double value = Double.parseDouble(text);

对于您的情况,看起来像您想要的:

double total = Double.parseDouble(jlbTotal.getText());
double price = Double.parseDouble(jlbPrice.getText());

所以我的编码应该是double total = Double.parseDouble(string);?
TinyBelly 2011年

4
@TinyBelly:是的,它看起来像您想要的:double total = Double.parseDouble(jlbTotal.getText());
WhiteFang34 2011年

1
@TinyBelly:您需要从要解析为double的字符串中提取文本的一部分。这是为您的情况准备的一种方法,尽管我不能保证它能对所有情况起作用:double total = Double.parseDouble(jlbTotal.getText().replaceAll("[^0-9.]", ""));-这基本上替换了不是数字或为零的所有字符,.仅保留要解析的数字和小数点。
2011年

4
不建议使用double来计算价格。
2011年

2
对于那些在搜索类结果Double而不是原始类型时被诱骗的人,请double使用Double.valueOf(String)
Pshemo '18年

48

如果在将字符串解析为十进制值时遇到问题,则需要将数字中的“,”替换为“。”。


String number = "123,321";
double value = Double.parseDouble( number.replace(",",".") );

2
另一个选择:DecimalFormat df = new DecimalFormat(); DecimalFormatSymbols sfs = new DecimalFormatSymbols(); sfs.setDecimalSeparator(','); df.setDecimalFormatSymbols(sfs); df.parse(number);
罗伯蒂亚诺2014年

37

要将字符串转换回双精度,请尝试以下操作

String s = "10.1";
Double d = Double.parseDouble(s);

parseDouble方法将实现所需的效果,Double.valueOf()方法也将实现。


2
不,String.valueOf(something)返回某物的String表示形式:如果某物是内置类型,或者它是一个Object并且为null,则它等效于someObject.toString()。要从字符串中获取Double,则必须按照相反的方式进行操作,如其他答案所示(Double.valueOf(someString)返回Double,而Double.parseDouble(someString)返回double)。
约翰·佩特拉克


30

使用new BigDecimal(string)。这将保证以后进行正确的计算。

根据经验-总是BigDecimal用于敏感的计算,例如金钱。

例:

String doubleAsString = "23.23";
BigDecimal price = new BigDecimal(doubleAsString);
BigDecimal total = price.plus(anotherPrice);

20

您只需要使用Double解析String值

String someValue= "52.23";
Double doubleVal = Double.parseDouble(someValue);
System.out.println(doubleVal);

14

再次引用上面罗伯蒂亚诺的名言-因为这是迄今为止功能最全,本地化最广泛的版本。它值得一个完整的帖子!

另外一个选项:

DecimalFormat df = new DecimalFormat(); 
DecimalFormatSymbols sfs = new DecimalFormatSymbols();
sfs.setDecimalSeparator(','); 
df.setDecimalFormatSymbols(sfs);
double d = df.parse(number).doubleValue();



3

这就是我会做的

    public static double convertToDouble(String temp){
       String a = temp;
       //replace all commas if present with no comma
       String s = a.replaceAll(",","").trim(); 
      // if there are any empty spaces also take it out.          
      String f = s.replaceAll(" ", ""); 
      //now convert the string to double
      double result = Double.parseDouble(f); 
    return result; // return the result
}

例如,您输入字符串“ 4 55,03。0”,输出将为双精度数字45563.0


2

如果Double.parseDouble()没有周围的try/catch块,则可能导致NumberFormatException输入的双字符串不符合有效格式的可能。

Guava为此提供了一种实用程序方法null,如果无法解析您的String ,它将返回此方法。

https://google.github.io/guava/releases/19.0/api/docs/com/google/common/primitives/Doubles.html#tryParse(java.lang.String)

Double valueDouble = Doubles.tryParse(aPotentiallyCorruptedDoubleString);

在运行时,将格式错误的String输入收益null分配给valueDouble


“如果无法解析您的String,则返回0.0” -Javadoc不支持该声明。
汤姆(Tom)

@Tom它返回空值Double类型,可以将其转换为0.0 double类型– DYS在13秒前编辑
DYS

1
它可以但不是自动地执行,并且您的代码片段无法执行此操作。
汤姆(Tom)

1

当您需要int时,使用此函数可将任何String数转换为double,只需将数据类型从num和num2转换为int即可;用Eng处理了所有字符串加倍的情况:“ Bader Qandeel”

public static double str2doubel(String str) {
    double num = 0;
    double num2 = 0;
    int idForDot = str.indexOf('.');
    boolean isNeg = false;
    String st;
    int start = 0;
    int end = str.length();

    if (idForDot != -1) {
        st = str.substring(0, idForDot);
        for (int i = str.length() - 1; i >= idForDot + 1; i--) {
            num2 = (num2 + str.charAt(i) - '0') / 10;
        }
    } else {
        st = str;
    }

    if (st.charAt(0) == '-') {
        isNeg = true;
        start++;
    } else if (st.charAt(0) == '+') {
        start++;
    }

    for (int i = start; i < st.length(); i++) {
        if (st.charAt(i) == ',') {
            continue;
        }
        num *= 10;
        num += st.charAt(i) - '0';
    }

    num = num + num2;
    if (isNeg) {
        num = -1 * num;
    }
    return num;
}


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.