Create an HTML from a Servlet

Hi
Can I create a file and write in it from a  servlet ?
I tried this but nothing happen:

FileOutputStream  fout = new FileOutputStream("test.html");
 PrintStream pout = new PrintStream(fout);
pout.println("<HTML> .......");

Adel

Received on Tuesday, 17 February 1998 16:58:13 UTC