aspose file tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes file i/o question Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of Mongo DB Applied Patterns this week in the MongoDB forum
or a resume review from Five Year Itch in the Jobs Discussion forum!
JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "file i/o question" Watch "file i/o question" New topic
Author

file i/o question

daniel schulken
Ranch Hand

Joined: Sep 23, 2000
Posts: 34
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
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
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.
 
subject: file i/o question
 
Similar Threads
File constructor
requested resource (first.jsp) not available
Ant error: Make sure you have it in you classpath
Adding a file to a program
JMF