Erreurs dans java

Fermé
westerndigit Messages postés 134 Date d'inscription mercredi 16 février 2011 Statut Membre Dernière intervention 18 avril 2012 - 17 déc. 2011 à 16:23
Chris 94 Messages postés 50978 Date d'inscription mardi 8 janvier 2008 Statut Modérateur Dernière intervention 17 février 2023 - 17 déc. 2011 à 16:28
Bonjour,

J'ai 3 erreurs dans mon programme.

Si quelqu'un peut me donner une solution

merci

3 erreurs...

cannot find symbol class FileWriter ligne 3
cannot find symbol class FileWriter ligne 17
cannot find symbol variable fichierRépertoire ligne 27
____________________________________________________________

class Fichier
{
protected final FileWriter fw;
protected static final String endl = System.getProperty("line.separator");

public static void main (String...args)
{
Fichier fichier = new Fichier("c:\\Répertoire.txt");

fichier.ajoute("Un Nom", "Un Prénom", "Un Tél");

fichier.fermer();
}

public Fichier(String fileName)
{
fw = new FileWriter(fileName,true);
}

public void ajoute(String nom, String prénom, String tél)
{
try
{
fw.write(nom+endl);
fw.write(prénom+endl);
fw.write(tél+endl);
fichierRépertoire.close();
}
catch (Exception e)
{
System.out.println(e);
}
}

public void fermer()
{
fw.close();
}
}
A voir également:

2 réponses

matthoffman Messages postés 405 Date d'inscription lundi 24 mars 2008 Statut Membre Dernière intervention 22 janvier 2013 47
17 déc. 2011 à 16:26
T'as vérifié tes imports ?
0
Chris 94 Messages postés 50978 Date d'inscription mardi 8 janvier 2008 Statut Modérateur Dernière intervention 17 février 2023 7 341
17 déc. 2011 à 16:28
Bonjour,

                                 Doublon !
Merci de continuer dans le premier topic ouvert.
0