欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

导出csv文件工具方法

程序员文章站 2022-03-03 14:07:12
...
 /**
     * 导出csv文件工具
     * @param file 文件路径+文件名称.csv
     * @param dataList 需要导出csv的数据
     * @return
     */
public static boolean exportCsv(File file, List<String> dataList) {
        boolean isSucess = false;

        FileOutputStream out = null;
        OutputStreamWriter osw = null;
        BufferedWriter bw = null;

        try {
            out = new FileOutputStream(file);
            out.write(new byte []{(byte) 0xEF, (byte) 0xBB, (byte) 0xBF});//解决中文乱码问题
            osw = new OutputStreamWriter(out);
            bw = new BufferedWriter(osw);
            if (dataList != null && !dataList.isEmpty()) {
                for (String data : dataList) {
                    bw.append(data).append("\r");
                }
            }
            isSucess = true;
        } catch (IOException e) {
            e.printStackTrace();
        } finally {	//释放资源:先开后关原则
            try {
                if (bw != null) {
                    bw.close();
                }
                if (osw != null) {
                    osw.close();
                }
                if (out != null) {
                    out.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return isSucess;
    }
相关标签: 工具方法记录