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");
}
}
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter