Javaで"12.34"
などのString
をdouble
に変換する方法を教えてください。
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());
文字列を10進数に変換するのに問題がある場合は、番号の中の "、"を "。"に置き換える必要があります。
String number = "123,321";
double value = Double.parseDouble( number.replace(",",".") );
文字列をdoubleに変換するには、次のことを試してください。
String s = "10.1";
Double d = Double.parseDouble(s);
ParseDoubleメソッドは目的の効果を達成し、Double.valueOf()メソッドも達成します。
double d = Double.parseDouble(aString);
これは文字列aStringを二重dに変換するはずです。
new BigDecimal(string)
を使用してください。これは後で適切な計算を保証します。
経験則として - お金のような微妙な計算には常にBigDecimal
を使ってください。
例:
String doubleAsString = "23.23";
BigDecimal price = new BigDecimal(doubleAsString);
BigDecimal total = price.plus(anotherPrice);
Double を使用して文字列値を解析するだけです。
String someValue= "52.23";
Double doubleVal = Double.parseDouble(someValue);
System.out.println(doubleVal);
上記のRobertianoからの引用を再度引用する - これははるかに多用途かつローカライズ対応バージョンだからです。それは完全な投稿に値する!
別のオプション:
DecimalFormat df = new DecimalFormat();
DecimalFormatSymbols sfs = new DecimalFormatSymbols();
sfs.setDecimalSeparator(',');
df.setDecimalFormatSymbols(sfs);
double d = df.parse(number).doubleValue();
String double_string = "100.215";
Double double = Double.parseDouble(double_string);
これは私がやることです
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,63。0"を入力すると、出力は二重数45563.0になります。
他にも方法があります。
Double temp = Double.valueOf(str);
number = temp.doubleValue();
Doubleはクラスで、 "temp"は変数です。 「番号」はあなたが探している最後の番号です。
try/catch
ブロックを囲まずにDouble.parseDouble()
を使用すると、入力doubleストリングが有効なフォーマットに準拠していない可能性のあるNumberFormatException
が発生する可能性があります。
Guavaは、あなたのStringがパースされ得ない場合にnull
を返すユーティリティメソッドを提供しています。
Double valueDouble = Doubles.tryParse(aPotentiallyCorruptedDoubleString);
実行時には、不正な形式の文字列入力により、null
がvalueDouble
に割り当てられます。
String s = "12.34";
double num = Double.valueOf(s);
これは、uがintを必要とするときに、任意の文字列数をdoubleに変換するために使用されます。numとnum2からintにデータ型を変換するだけです。 Eng: "Bader Qandeel"を使用して、任意の文字列を2倍にすることができます。
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;
}