public static void tableauDeBytesVersFichier
(byte[] tableau, java.io.File fichier)
throws java.io.IOException {
java.io.FileWriter f = new java.io.FileWriter(fichier);
//on itère sur chaque élément, car il n'y a pas de fonction globale
for (int i = 0; i < tableau.length; i++)
f.write(tableau[i]);
f.close();
}