生成CVS文件

     File newFile = new File(tempDir + File.separatorChar + UUID.randomUUID().toString() + ".csv");
        Files.createParentDirs(newFile);
        final byte commonCsvHead[] = {(byte) 0xEF, (byte) 0xBB, (byte) 0xBF};
        Files.write(Bytes.concat(commonCsvHead, stringBuilder.toString().getBytes(Charsets.UTF_8.toString())), newFile);


你可能感兴趣的:(生成CVS文件)