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"); } } }