In this section, we are going to convert a numeric type string value into a double.
Convert String To Double
In this section, we are going to convert a numeric type string value into a double. The double supports big-integer value.
Code Description:
This program simply takes a numeric type string at the console with the "Enter numeric type string value:" message and it converts into a double. The doubleValue() method returns the double value of this double object. And Double class wraps a value of the primitive type double in an object. Finally, it we get the value to be converted into a double.
Here is this the code of this program:
import java.io.*;
|
Output of this program given below.
C:\corejava>java StringToDouble Enter string value: 23 double d = 23.0 C:\corejava> |