Hey guys..
How to write a textfile..from client to server..
I have tried like this
lStrFile = "ErrorLog" +""+day+""+mon+""+year+".txt";
FileWriter fstream = new FileWriter(lStrFile, true);
BufferedWriter out = new BufferedWriter(fstream);
out.write("Error ");
in this code the error will locate in current place.. i mean in our project location... but i want to locate(error file) it on the server...