> hi
> is found function convert from long to string??
> plese if found tell me
Have a look at the Java Docs, in particular the following page:
http://java.sun.com/j2se/1.4.2/docs/api/java/lang/String.html
Look at the methods, find out which one takes a long as argument and returns
a String.
Best regards,
JayCee
--
http://jcsnippets.atspace.com/
a collection of source code, tips and tricks
Snyke - 13 May 2006 18:25 GMT
http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Long.html#toString()
use "static String toString(long num)" defined in the Long
class.........this method returns a string that contains the decimal
equivalent of num........
Bart Cremers - 14 May 2006 07:12 GMT
or to make it easier to remember: there exists a String.valueOf(...)
method for every possible argument you can have in Java. One method
fits them all :)
Bart