Add description of meaning of csv columns

This commit is contained in:
Quentin Legot 2023-03-24 08:33:43 +01:00
parent 6b9a526e49
commit ad5deb2916

View File

@ -58,7 +58,7 @@ public class AccessPoint {
try{ try{
Files.deleteIfExists(Paths.get("data.csv")); Files.deleteIfExists(Paths.get("data.csv"));
this.outputDataFile = new FileOutputStream("data.csv", true); this.outputDataFile = new FileOutputStream("data.csv", true);
outputDataFile.write("tick;x;y;user;bandwidth;\n".getBytes());
}catch(IOException e){ }catch(IOException e){
System.err.println("Cannot create the output file"); System.err.println("Cannot create the output file");
System.exit(1); System.exit(1);