/** * Saves to videos.csv. Overwrites all content in file. * * @return * @throws IOException */ public static void saveDB() throws IOException { File file = new File("src//videos.csv"); if (file.exists()) file.delete(); file.createNewFile(); CSVWriter output = new CSVWriter(file); output.addDatum(toCSVString()); output.finish(); }
public void onMesg(ActivityMesg mesg) { csv.writeln(); }
public void close() { csv.close(); }