am i correct in thanking that the only way to append to a file is using RandomAccessFile?
P SOLAIAPPAN
Ranch Hand
Joined: Oct 20, 2000
Posts: 68
posted
0
Hi Daniel, The answer is NO. Read this from JAVA API FileWriter : public FileWriter(String�fileName, boolean�append) throws IOException
Constructs a FileWriter object given a file name with a boolean indicating whether or not to append the data written. Parameters:fileName - String The system-dependent filename.append - boolean if true, then data will be written to the end of the file rather than the beginning.Throws:IOException - if the specified file is not found or if some other I/O error occurs. You can use as below. BufferedWriter bw=new BufferedWriter(new FileWriter("Test.txt",true)); This will append you data to the file "Test.txt". Solaiappan
daniel schulken
Ranch Hand
Joined: Sep 23, 2000
Posts: 34
posted
0
thanks
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.