i would like to convert a string to double and keep it as it is ,for example i have :
719379705 instead of this 7.19379705E8
- is double type having the capacity to display 719379705 as it is and not in exponential form.
i use this method for conversion :
private double toDouble(String valeur) {
    if (valeur != null) {
        return Double.parseDouble(valeur);
    }
    return Double.NaN;
}
thanks
 
     
    