how to write in a file

PHOTO EMBED

Fri Jan 19 2024 08:59:18 GMT+0000 (Coordinated Universal Time)

Saved by @E23CSEU1151 #java

import java.io.*;
class D
{
    public static void main(String[] args)
    {
        try
        {
            FileWriter f= new FileWriter("C:\\Users\\HP\\Desktop\\LC.txt");
            try
            {
                f.write("hello guys ");
            }
            finally
            {
                f.close();
            }
            System.out.println("Susccesfully writen");
            

        }
        catch(Exception i)
        {
            System.out.println("aome execption found");
        }

            
    }
}
content_copyCOPY