public static double convertStringToDouble(String str) { return Double.parseDouble(str); }
Back to JavaHowTo