20212223242526
public static void main(String[] args) { Path input = Paths.get(args[0]); Path output = input.getParent().resolve("myreport.html").toAbsolutePath(); new HtmlAnalytics(new CsvReportLoader(input, new CsvReport()).load()).toHtmlReport(output); }