Q:

Conversion from String to Double in Java

belongs to collection: Java Conversion Programs

0

Given a string value and we have to convert it into a double.

Java conversion from String to Double

To convert a String to Double, we can use the following methods of Double class (see the syntax given below...)

Syntax:

Double Double.valueOf(String).doubleValue();
OR
Double Double.parseDouble(String);

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Java code to convert a String to Double

//Java code to convert String to Double
public class Main {
    public static void main(String args[]) {
        String str = "12345.87878d";

        //variable to store result
        double result = 0;

        //converting string to double
        //method 1
        result = Double.valueOf(str).doubleValue();
        System.out.println("result (value of str as double) = " + result);

        //method 2
        result = Double.parseDouble(str);
        System.out.println("result (value of str as double) = " + result);
    }
}

Output

result (value of str as double) = 12345.87878
result (value of str as double) = 12345.87878

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Conversion from String to Long in Java... >>
<< Conversion from String to Integer in Java...