Exception java

Fermé
cabistos Messages postés 20 Date d'inscription dimanche 23 mars 2014 Statut Membre Dernière intervention 1 juin 2014 - Modifié par cabistos le 24/04/2014 à 14:17
KX Messages postés 16752 Date d'inscription samedi 31 mai 2008 Statut Modérateur Dernière intervention 31 août 2024 - 24 avril 2014 à 18:13
Bonjour,
quand j'ai ajouté cette méthode a ma classe mon programme m'affiche :Exception in thread "main" java.lang.NullPointerException
at allégerfile.maClass.rejetChap(maClass.java:26)
at allégerfile.maClass.main(maClass.java:85)


voici la méthode
aidez moi svp

public static boolean rejetChap (String in) throws IOException{
chapin = new BufferedReader(new FileReader("D://pfe//chap rejeté.txt"));
String chapline = chapin.readLine();

while (chapin != null && chapline.equals(in.substring(267,277)) ==false){chapline=chapin.readLine();} chapin.close();
if (chapline == null) return false ;
else return true;
}



A voir également:

1 réponse

KX Messages postés 16752 Date d'inscription samedi 31 mai 2008 Statut Modérateur Dernière intervention 31 août 2024 3 019
24 avril 2014 à 18:13
Bonjour,

Dans ta boucle while ce n'est pas chopin qu'il faut tester à null mais chopline...
0