Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm making a program that will output lines to a text file. I don't wish to overwrite the file, but that is what my current code does. I just want to go down the number of lines that are already there and write hello. Here is my code:

FileWriter fileWriter = new FileWriter(fileLocation, false);
BufferedWriter bufferedWriter = new BufferedWriter(fileWriter);

while(numberOfLines > compareToNumOfLines) {
    bufferedWriter.newLine();
    compareToNumOfLines++;
}

bufferedWriter.write("hello");
bufferedWriter.close();

Unfortunately, this just creates spaces where the text used to be. What am I doing wrong?

share|improve this question
1  
Note that file systems in general do not support editing files in random places; you can't go to line number N and for example insert a new line there (or overwrite existing line N). You can, however, append data to the end of an existing file. – Jesper Feb 23 '12 at 15:19

2 Answers

up vote 8 down vote accepted

Change

FileWriter fileWriter = new FileWriter(fileLocation, false);

to

FileWriter fileWriter = new FileWriter(fileLocation, true);

As explained in the documentation, the second argument is a boolean that specify if you want to append the text or overwrite it.

share|improve this answer
Too quick :P +1 – Ash Burlaczenko Feb 23 '12 at 15:18
I LOVE U SOOOO MUCH! thank you bro – wbAnon Feb 23 '12 at 18:17
@wbAnon ahah you're welcome. – talnicolas Feb 23 '12 at 18:19

If you want to append text to existing file then open the file in append mode. If you want to write at random place in file then you can use RandomAccessFile class.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.