Mega Code Archive

 
Categories / Java Tutorial / Data Type
 

Use toString method of Double class to convert Double into String

public class Main {   public static void main(String[] args) {     Double dObj = new Double(10.25);     String str = dObj.toString();     System.out.println(str);   } }