نوشتن در یک فایل(Write To a File)

در
مثال زیر، ما از کلاس FileWriter همراه با روش write() آن استفاده می کنیم.
برای نوشتن متنی در فایلی که در مثال بالا ایجاد کردیم. توجه داشته باشید که وقتی نوشتن روی فایل تمام شد،
شما باید آن را ببندید
با روش close():



مثال


import java.io.FileWriter;   // Import the FileWriter class
import java.io.IOException;  // Import the IOException class to handle errors

public class WriteToFile {
  public static void main(String[] args) {
    try {
      FileWriter myWriter = new FileWriter("filename.txt");
      myWriter.write("Files in Java might be tricky, but it is fun enough!");
      myWriter.close();
      System.out.println("Successfully wrote to the file.");
    } catch (IOException e) {
      System.out.println("An error occurred.");
      e.printStackTrace();
    }
  }
}

The output will be:




Successfully wrote to the file.






برای خواندن فایل بالا، به بخش فایل‌های خواندن جاوا بروید.