//l'import qui va bien import java.io.*; //la fonction public static void enregistrerT(String texte, File fichier) throws IOException{ FileWriter f = new FileWriter(fichier); f.write(texte); f.close(); }