cmg
2024-08-27 728bc77bb2d0a419e526b776ec1e068e728dce9b
中州店初始化数据
1个文件已修改
20 ■■■■■ 已修改文件
src/main/java/com/hx/util/CVSUtil.java 20 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/hx/util/CVSUtil.java
@@ -53,4 +53,24 @@
        fos.close();
    }
    public static void writeToCVS_1(String path, String[] headers, List<List<String>> data) throws Exception {
        FileOutputStream fos = new FileOutputStream(path);
        byte[] uft8bom = { (byte) 0xef, (byte) 0xbb, (byte) 0xbf };
        fos.write(uft8bom);
        OutputStreamWriter osw = new OutputStreamWriter(fos, "utf-8");
        CSVFormat csvFormat = CSVFormat.DEFAULT.withHeader(headers);
        CSVPrinter csvPrinter = new CSVPrinter(osw, csvFormat);
        for (int i = 0; i < data.size(); i++) {
            csvPrinter.printRecord(data.get(i));
        }
        csvPrinter.flush();
        csvPrinter.close();
        osw.close();
        fos.close();
    }
}