cast from string to double java code example

Example 1: string to double java

public class stringtodouble {
	public static void main(String args) {
    	String string = "1.23";
      	double decimal = Double.parseDouble(string);
    }
}

Example 2: string to double java exception

try {
  a = Double.parseDouble(b);
} catch (NumberFormatException e) {
  //the parseDouble failed and you need to handle it here
}

Example 3: java string to double

Double d = Double.valueOf(String str);

Example 4: transformer un string en double java

double total = Double.parseDouble(jlbTotal.getText());
double price = Double.parseDouble(jlbPrice.getText());

Tags:

Java Example