public static void writePutMetricsToFile()

in src/main/java/com/aws/amazonmq/blog/util/CSVUtil.java [17:24]


	public static void writePutMetricsToFile(Path path, List<PutMsgMetric> putMsgMetricList) throws Exception {
		Writer writer = new FileWriter(path.toString());
		StatefulBeanToCsv<PutMsgMetric> sbc = new StatefulBeanToCsvBuilder<PutMsgMetric>(writer)
				.withSeparator(CSVWriter.DEFAULT_SEPARATOR).build();
		sbc.write(putMsgMetricList);
		writer.close();
		writer.close();
	}