J'ai oublié, alors je l'ai vérifié. Opérations sur les fichiers après java7
Path p1 = Paths.get ("sample.dat"); //Méthode Paths
Boolean b = Files.isDirectory(p1); //Méthode des fichiers
System.out.println(b);
Path p1 = Paths.get("sample.dat");
BufferedReader br = Files.newBufferedReader(p1);
String l;
while( (l=br.readLine()) != null){ System.out.println(l); }
Recommended Posts