Problem Statement
You want to convert a string value to double in Java.
Solution
You can use one of the three approaches to convert a string to double in Java.
1. Assigning the string to the constructor of the Double class
2. Using Double.valueOf
3. Using Double.parseDouble
public class Main { public static void main(String[] args) { System.out.println("Abundantcode.com Java Tutorials"); Double input1 = new Double("76.2"); System.out.println(input1); Double input2 = Double.valueOf("76.2"); System.out.println("STring to double using valueOf " + input2); Double input3 = Double.parseDouble("778.23"); System.out.println("string to double using parseDouble" + input3); } }
The output of the above program is
Abundantcode.com Java Tutorials
76.2
String to double using valueOf 76.2
string to double using parseDouble778.23
Leave a Reply