Here you can find the source of doubleToString(double d)
public static String doubleToString(double d)
//package com.java2s; /*/*from www .j a v a2 s.com*/ * Created 20.07.2007 * * This file is part of the project Alricg. The file is copyright * protected and under the GNU General Public License. * For more information see "http://www.alricg.de/". */ public class Main { /** * Erstellt aus einem double einen String. Dabei wird die Nachkommastelle nur * angezeigt, wenn diese auch notwenig ist */ public static String doubleToString(double d) { if (d % 1 == 0) { return Integer.toString((int) d); } else { return Double.toString(d); } } }