Answers:
您可以使用Double.parseDouble()
将转换String
为double
:
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(jlbTotal.getText());
double total = Double.parseDouble(jlbTotal.getText().replaceAll("[^0-9.]", ""));
-这基本上替换了不是数字或为零的所有字符,.
仅保留要解析的数字和小数点。
Double
而不是原始类型时被诱骗的人,请double
使用Double.valueOf(String)
。
如果在将字符串解析为十进制值时遇到问题,则需要将数字中的“,”替换为“。”。
String number = "123,321";
double value = Double.parseDouble( number.replace(",",".") );
要将字符串转换回双精度,请尝试以下操作
String s = "10.1";
Double d = Double.parseDouble(s);
parseDouble方法将实现所需的效果,Double.valueOf()方法也将实现。
double d = Double.parseDouble(aString);
这应该将字符串aString转换为double d。
String double_string = "100.215";
Double double = Double.parseDouble(double_string);
还有另一种方式。
Double temp = Double.valueOf(str);
number = temp.doubleValue();
Double是一个类,而“ temp”是一个变量。“数字”是您要查找的最终数字。
这就是我会做的
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
如果Double.parseDouble()
没有周围的try/catch
块,则可能导致NumberFormatException
输入的双字符串不符合有效格式的可能。
Guava为此提供了一种实用程序方法null
,如果无法解析您的String ,它将返回此方法。
Double valueDouble = Doubles.tryParse(aPotentiallyCorruptedDoubleString);
在运行时,将格式错误的String输入收益null
分配给valueDouble
当您需要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;
}
String s = "12.34";
double num = Double.valueOf(s);