public class FW
{
public static void main(String args[])
{
FileWriter out=null;
try
{
out = new FileWriter("c:/test.txt"
out.write("blah blah blah"
out.flush();
out.close();
//doing something..
//
//
//
//now emptying the file test.txt...
out = new FileWriter("c:/test.txt"
out.flush();
out.close();
}
catch(Exception e)
{
System.out.println("Exception:"+e);
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.