PrintWriter file= new PrintWriter(new FileWriter("league1.txt",true));
file.print(value1);
file.print(',');
file.print(value2);
file.print(',');
file.print(value3);
file.print(',');
file.close();
i m using this code to write in a file.. i m using this in servlet.value1, value2,value3 are Strings. and i wana to write it in file named "league1.txt". i have made this file in WEBPAGES folder in netbeans. is it right place ?? it is not writing anything to file.. please help... my web application is running fine but not file writing....HELP!!