How to convert String to Double in Java

With the introduction of different data types, the need for conversion of one data type to another has come into being. In this article, we are going to see how we can convert from a String data type into Double data type.

Conversion Modes

There are two ways in which String data can be converted into double. They are:

  • Using the static method parseDouble(String) of the java.lang.Double wrapper class
  • Using the static method valueOf(String) of the java.lang.Double wrapper class
  • Using the constructor of Double wrapper class that takes String as its parameter

Let us see both the modes and how to do them.

parseDouble(String) method

The class java.lang.Double has a static method called parseDouble(String) that allows the programmer to easily convert a String containing decimal data into the corresponding Double value. The function returns a Double value.
Let us see a code snippet to illustrate the same:

The above code on execution provides the following output:

35.126

What if String is not convertible to double

If String is not convertible to double, you will get below exception.

Exception in thread “main” java.lang.NumberFormatException: For input string: “35.126df”
at java.base/jdk.internal.math.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:2054)
at java.base/jdk.internal.math.FloatingDecimal.parseDouble(FloatingDecimal.java:110)
at java.base/java.lang.Double.parseDouble(Double.java:543)
at org.arpit.java2blog.java8.ConvertStringToDouble.main(ConvertStringToDouble.java:8)

Using valueOf(String) method

You can also use valueOf(String) method to convert String to double in java. You can call Double’s doubleValue() to convert it to primitive type.

When you run above program, you will get below output.

35.126

Using the Double class constructor

The other method to convert to double is by using the parameterized constructor of java.lang.Double class that accepts a String as a parameter input. This creates an object of the Double class that stores the value of the String data sent and can be accessed using its doubleValue() function or by accessing the wrapper class object itself.

Let us see the code snippet:

The above code on execution provides the following output:

35.126

That’s all about String to Double conversion.

Was this post helpful?

Leave a Reply

Your email address will not be published. Required fields are marked *