Well if i am not wrong then FileWriter has an overloaded constructor that
accepts a boolean value like this...
output = new PrintWriter(new BufferedWriter(
new FileWriter(fileName+"a", true)));
after setting it to true it will start adding new information from the end i
guess... for reference browse the API and find out...