Java examples for Language Basics:double
Convert Double object to String object
public class Main { public static void main(String[] args) { Double dObj = new Double(10.25); //from w w w. ja v a2s.c om String str = dObj.toString(); System.out.println("Double converted to String as " + str); } }