JAVA conversion

Fermé
Hnagow - 18 mai 2012 à 00:55
 Utilisateur anonyme - 18 mai 2012 à 22:33
Bonjour a vous ,
quelqu'un pourrait me dire comment on convertit un int en String ??


A voir également:

2 réponses

WiLiNgToN Messages postés 160 Date d'inscription dimanche 21 juin 2009 Statut Membre Dernière intervention 3 octobre 2013 10
18 mai 2012 à 00:58
Google est ton ami ! String.valueOf( i )
2
Utilisateur anonyme
18 mai 2012 à 22:33
Salut,

int en String :

String str = Integer.toString(int);

Cordialement,

Dan
1