Sometimes we have to print some data into Notepad according to our need.So this post helps you to write data into Notepad.
import java.io.BufferedWriter;
import java.io.FileWriter;
public class txt_write
{
import java.io.FileWriter;
public class txt_write
{
public static void main(String[] args) throws Exception
{
FileWriter fr=new FileWriter(“e:\\data.txt”);
BufferedWriter br=new BufferedWriter(fr);
{
FileWriter fr=new FileWriter(“e:\\data.txt”);
BufferedWriter br=new BufferedWriter(fr);
br.write(“This is sample”);
br.newLine();
br.write(“Testing tools”);
br.newLine();
br.newLine();
br.write(“Testing tools”);
br.newLine();
br.close();
}
}
Hi,
ReplyDeleteCan I ask a question ?