Re: append text into a file

2003-11-20 Thread Harry Mantheakis
Hello Could please give me some advice about how to append some data into an existed log file? Thanks. The GenericServlet.log method (which HttpServlets inherit) appends to the log file - within a servlet, just call 'log'. In a JSP you can do the same thing using the ServletContext.log

RE: append text into a file

2003-11-19 Thread Galbayar
FileWriter(File file, boolean append) FileWriter(String fileName, boolean append) -Original Message- From: Cui Xiaojing-a13339 [mailto:[EMAIL PROTECTED] Sent: Thursday, November 20, 2003 11:43 AM To: Tomcat Users List Subject: append text into a file Hello All, Could please give me