String ke Double Java Exception

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