Bin dans la classe Integer, t'as une fonction byteValue(). A partir de là, tu fabriques le caractère que tu veux. Exemple :
Code :
- Integer i = new Integer(65);
- byte[] b = new byte[1];
- b[0] = i.byteValue();
- String s = new String(b);
- System.out.println(s);
|
Bon, j'me complique peut-être un brin la vie, m'enfin c'est l'idée.
---------------
Everyone thinks of changing the world, but no one thinks of changing himself | It is the peculiar quality of a fool to perceive the faults of others and to forget his own | Early clumsiness is not a verdict, it’s an essential ingredient.