import java.io.*;
public class WriterTest {
public static void main(String[] args) {
try {
String path = "/Users/zaferteker/Private/Books/Documents/TestFileOut.txt ";
FileWriter writer = new FileWriter(path);
BufferedWriter bw = new BufferedWriter(writer);
String text = "Bu bir deneme yazısıdır";
bw.write(text);
bw.close();
writer.close();
System.out.println("Yazı dosyaya yazıldı");
} catch (Exception e) {
e.printStackTrace();
}
}
}
Dosyayı İndir