Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Why my program writes file over and over instead of adding data?

I want to write in file but it always delete previous and write new...

BufferedWriter writer = null;
    try {

    writer = new BufferedWriter(new FileWriter("koce_podatki.txt", true));
    //WRITES 1 LINE TO FILE AND CHANGES LINE
    writer.write(temp);
    writer.newLine();
    writer.close();
    } catch (Exception e) {

    }

    try {

    writer = new BufferedWriter(new FileWriter("s_koce.txt", true));
    //WRITES 1 LINE TO FILE AND CHANGES LINE
    writer.write(ime.getText());
    writer.newLine();
    writer.close();
    } catch (Exception e) {

    }
share|improve this question
1  
"I want to write in file but it always delete previous and write new..." I don't believe it does. I think there's something else going on. – T.J. Crowder Jan 26 at 15:51
1  
And sure enough, it doesn't: pastie.org/5869004 Run that more than once, giving it two args each time (the first is written to koce_podatki.txt, the second to s_koce.txt), and the new data is appended, not overwritten. The problem lies elsewhere. – T.J. Crowder Jan 26 at 15:54

closed as too localized by T.J. Crowder, thkala, jlordo, Soner Gönül, Mario Jan 26 at 19:46

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 0 down vote accepted

I used thics, and it worked:

try {
    PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter("koce_podatki.txt", true)));
    out.println(temp);
    out.close();
} catch (IOException e) {
    //oh noes!
}
share|improve this answer
Your other code works too. – T.J. Crowder Jan 26 at 15:55
I dont knew what but this thing worked out as well – Klemen Kogovšek Jan 30 at 16:17

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