C#将DataTable导出到csv文件

发布时间:2020-09-23 13:28:59 作者:RQSLT
来源:网络 阅读:3826
//author: walker
//date: 2014-01-07
//function: 将DataTable导出到csv文件
public static bool datatableToCSV(DataTable dt, string pathFile)
{
    string strLine = "";
    StreamWriter sw;
    try
    {
        sw = new StreamWriter(pathFile, false, System.Text.Encoding.GetEncoding(-0)); //覆盖
        //表头
        for (int i = 0; i < dt.Columns.Count; i++)
        {
            if (i > 0)
                strLine += ",";
            strLine += dt.Columns[i].ColumnName;
        }
        strLine.Remove(strLine.Length - 1);
        sw.WriteLine(strLine);
        strLine = "";
        //表的内容
        for (int j = 0; j < dt.Rows.Count; j++)
        {
            strLine = "";
            int colCount = dt.Columns.Count;
            for (int k = 0; k < colCount; k++)
            {
                if (k > 0 && k < colCount)
                    strLine += ",";
                if (dt.Rows[j][k] == null)
                    strLine += "";
                else
                {
                    string cell = dt.Rows[j][k].ToString().Trim();
                    //防止里面含有特殊符号
                    cell = cell.Replace("\"", "\"\"");
                    cell = "\"" + cell + "\"";
                    strLine += cell;
                }
            }
            sw.WriteLine(strLine);
        }
        sw.Close();
        string msg = "数据被成功导出到:" + pathFile;
        Console.WriteLine(msg);
    }
    catch (Exception ex)
    {
        string msg = "导出错误:" + pathFile;
        Console.WriteLine(msg);
        return false;
    }
    return true;
}

相关阅读

1、关于特殊符号和分隔符。

2、C#将DataGridView导出到csv文件。


*** walker ***


推荐阅读:
  1. 将DataTable转换成CSV文件
  2. C#将DataGridView导出到csv文件

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

datatable csv

上一篇:学python可以找什么工作

下一篇:如何制作一个H5响应式网站

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》