Salut,
Comment convertir un type long en string pour afficher les tailles des fichiers presents sur
le serveur FTP dans une page web.
merci.


} ! /**
* Returns the string representation of the <code>long</code> argument.
* <p>
* The representation is exactly the one returned by the
* <code>Long.toString</code> method of one argument.
*
* @param l a <code>long</code>.
* @return a string representation of the <code>long</code> argument.
* @see java.lang.Long#toString(long)
*/
public static String valueOf(long l) {
return Long.toString(l, 10);
Rhô mais Sun fait n'importe quoi !
.
.
...