I currently have.
public void openFile(){
try{
x = new Formatter("Data.text");
}
catch(Exception e){
System.out.println("File not created");
}
}
. . . .
.
.
public void addRecords(){
x.format("%s %s %s %s", first(), last(), ID(), num());
}
But after I run the file, it overwrites the data each time?