string to double java exception

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

Also in Java: