private double toDouble(String sDouble) { try { return Double.parseDouble(sDouble.replace(',', '.')); } catch (Exception e) { return 0; }}