Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 23rd, 2012  |  syntax: None  |  size: 0.33 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How can I convert double to string in Java ME
  2. double lat = 22.456464;
  3. String strLat = String.valueOf(lat);
  4.        
  5. String str = Double.toString(double).
  6.        
  7. double lat = 22.456464;
  8. String strLat = "" + lat;
  9.        
  10. String str = Double.toString(double).
  11.        
  12. String str = Double.toString(lat);
  13.        
  14. public static String toString(double d)