Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

import java.io.

*;
public class WriteTextFileExample{
public static void main(String[] args)throws IOException{
Writer output = null;
String text = "Rajesh Kumar";
File file = new File("write.txt");
output = new BufferedWriter(new FileWriter(file));
output.write(text);
output.close();
System.out.println("Your file has been written");
}
}

You might also like