Search:

Type: Posts; User: andbin

Search: Search took 0.17 seconds.

  1. Replies
    4
    Views
    1,543

    Re: (Java) Overwrite line in .txt file

    FileWriter overwrites (in other words: rewrite from the beginning) the file .... unless you use the constructor with the boolean append parameter so that you can choose.
  2. Replies
    4
    Views
    1,543

    Re: (Java) Overwrite line in .txt file

    Updating a file, in the sense to keep the actual content and "pass" over changing only some things is more difficult, especially if it's a text file.
    In your case, it's sufficient to recreate the...
Results 1 to 2 of 2