Java 8 Stili
Path path = Paths.get("logs/error.log");
Files.createDirectories(path.getParent());
Dosyaya yazmak için
Files.write(path, "Log log".getBytes());
Okumak
System.out.println(Files.readAllLines(path));
Tam örnek
public class CreateFolderAndWrite {
public static void main(String[] args) {
try {
Path path = Paths.get("logs/error.log");
Files.createDirectories(path.getParent());
Files.write(path, "Log log".getBytes());
System.out.println(Files.readAllLines(path));
} catch (IOException e) {
e.printStackTrace();
}
}
}