C#將DataGridView導(dǎo)出到csv文件

//author: walker
//date: 2014-01-06
//function: 將dataGridView導(dǎo)出到csv
private bool dataGridViewToCSV(DataGridView dataGridView)
{
    if (dataGridView.Rows.Count == 0)
    {
        MessageBox.Show("沒(méi)有數(shù)據(jù)可導(dǎo)出!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
        return false;
    }
    SaveFileDialog saveFileDialog = new SaveFileDialog();
    saveFileDialog.Filter = "CSV files (*.csv)|*.csv";
    saveFileDialog.FilterIndex = 0;
    saveFileDialog.RestoreDirectory = true;
    saveFileDialog.CreatePrompt = true;
    saveFileDialog.FileName = null;
    saveFileDialog.Title = "保存";
    if (saveFileDialog.ShowDialog() == DialogResult.OK)
    {
        Stream stream = saveFileDialog.OpenFile();
        StreamWriter sw = new StreamWriter(stream, System.Text.Encoding.GetEncoding(-0));
        string strLine = "";
        try
        {
            //表頭
            for (int i = 0; i < dataGridView.ColumnCount; i++)
            {
                if (i > 0)
                    strLine += ",";
                strLine += dataGridView.Columns[i].HeaderText;
            }
            strLine.Remove(strLine.Length - 1);
            sw.WriteLine(strLine);
            strLine = "";
            //表的內(nèi)容
            for (int j = 0; j < dataGridView.Rows.Count; j++)
            {
                strLine = "";
                int colCount = dataGridView.Columns.Count;
                for (int k = 0; k < colCount; k++)
                {
                    if (k > 0 && k < colCount)
                        strLine += ",";
                    if (dataGridView.Rows[j].Cells[k].Value == null)
                        strLine += "";
                    else
                    {
                        string cell = dataGridView.Rows[j].Cells[k].Value.ToString().Trim();
                        //防止里面含有特殊符號(hào)
                        cell = cell.Replace("\"", "\"\"");
                        cell = "\"" + cell + "\"";
                        strLine += cell;
                    }
                }
                sw.WriteLine(strLine);
            }
            sw.Close();
            stream.Close();
            MessageBox.Show("數(shù)據(jù)被導(dǎo)出到:" + saveFileDialog.FileName.ToString(), "導(dǎo)出完畢", MessageBoxButtons.OK, MessageBoxIcon.Information);
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message, "導(dǎo)出錯(cuò)誤", MessageBoxButtons.OK, MessageBoxIcon.Information);
            return false;
        }
    }
    return true;
}

相關(guān)閱讀:

在監(jiān)利等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場(chǎng)前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作 網(wǎng)站設(shè)計(jì)制作按需定制設(shè)計(jì),公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站制作,營(yíng)銷型網(wǎng)站,成都外貿(mào)網(wǎng)站制作,監(jiān)利網(wǎng)站建設(shè)費(fèi)用合理。

1、關(guān)于特殊符號(hào)和分隔符。

2、C#將DataTable導(dǎo)出到csv文件。

*** walker ***

本文名稱:C#將DataGridView導(dǎo)出到csv文件
鏈接URL:http://muchs.cn/article28/geohjp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供關(guān)鍵詞優(yōu)化網(wǎng)站收錄、品牌網(wǎng)站制作移動(dòng)網(wǎng)站建設(shè)、網(wǎng)站排名手機(jī)網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

成都app開發(fā)公司