you have to open the file in append mode, which can be achieved by using the FileWriter(String fileName, boolean append) constructor.
output = new BufferedWriter(new FileWriter(my_file_name, true));
should do the trick
you have to open the file in append mode, which can be achieved by using the FileWriter(String fileName, boolean append) constructor.
output = new BufferedWriter(new FileWriter(my_file_name, true));
should do the trick