Is there a way to save Cloudlet output to a csv file?

126 Views Asked by At

I'm working on a project using CloudSim simulation tool for masters. I want to know how to save the output of the printCloudletList to a csv file in NetBeans. Any ideas? Please let me know.

2

There are 2 best solutions below

0
On

Using CloudSim Plus you can generate results in CSV and other formats. The code is as below. CloudSim Plus even allows you to add any data you want to the generated table.

try {
    CsvTable csv = new CsvTable();
    csv.setPrintStream(new PrintStream(new java.io.File("/tmp/results.csv")));
    new CloudletsTableBuilder(broker0.getCloudletFinishedList(), csv).build();
} catch (IOException e) {
    System.err.println(e.getMessage());
}
1
On

The code here worked for me. Just had to do some imports after pasting in code. Needed some minimal formatting of outputted csv file to get it right in excel format.