Appending a new line in a previous created text file in java

88 Views Asked by At

I am in trouble finding how to read a text file and then write a new line after the ones that were before on the file.

Like (current file)

1234 Albert

(edited file)

1234 Albert

1223 Dave

for this, i am using this code without success.

   String suma="";
   String verify="";

        BufferedReader br=new BufferedReader(new FileReader("C:\\Users\\Beto\\Desktop\\registrocuentas.txt"));

        BufferedWriter bw= new BufferedWriter(new FileWriter("C:\\Users\\Beto\\Desktop\\registrocuentas.txt")); 
        while((verify=br.readLine())!=null){
            suma=suma+" "+verify;
            System.out.println(suma);
        }
        suma=suma+" "+cuenta+"."+nombre+apellidoPaterno+apellidoMaterno;
        String split[]=suma.split(" ");
        int c=split.length;
        for(int i=0;i<c;i++){
            bw.write(split[i]);
        }
        bw.close();
        br.close();

Currently the edited file erases the old entry, making the file looks like this

(current result of my code for edited file)

1223 Dave

2

There are 2 best solutions below

0
On

You should use the append method instead of write:

bw.append(split[i]);

This adds to the file with existing data, while write completely erases the old data and puts new one in.

0
On

Take a look at the JavaDocs. They tell you how to use BufferedWriters.

When you create your FileWriter, use this line instead of your current one:

BufferedWriter bw= new BufferedWriter(new FileWriter("C:\\Users\\Beto\\Desktop\\registrocuentas.txt"), true);

This means you want to append to your file.