Here you can find the source of convertDoubleToString(double value)
public static String convertDoubleToString(double value)
//package com.java2s; //License from project: Open Source License public class Main { public static String convertDoubleToString(double value) { return Double.toString(value); }//from www .j a v a2 s . c o m }