美文网首页
C# DataTable和CSV 读取导出

C# DataTable和CSV 读取导出

作者: CrazyMonk | 来源:发表于2018-08-20 14:33 被阅读0次

将DataTable 导出到CSV


namespace Mk.Core
{
    using System;
    using System.Collections.Generic;
    using System.Data;
    using System.IO;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;

    public class Export
    {
        #region 导出到CSV
        
        /// <summary>
        /// 将datatable中的数据保存到csv中,使用保存对话框
        /// </summary>
        /// <param name="dt">数据来源</param>
        public static void ExportToSvc(DataTable dt, string defaultName = "")
        {
            SaveFileDialog sfd = new SaveFileDialog(); //设置文件类型
            sfd.Filter = "导出数据(*.csv)|*.csv";
            sfd.FileName = defaultName;
            //设置默认文件类型显示顺序
            //sfd.FilterIndex = 1;

            //保存对话框是否记忆上次打开的目录
            sfd.RestoreDirectory = true;

            //点了保存按钮进入
            if (sfd.ShowDialog() == DialogResult.OK)
            {
                string localFilePath = sfd.FileName.ToString(); //获得文件路径+文件名
                string fileNameExt = localFilePath.Substring(localFilePath.LastIndexOf("\\") + 1); //获取文件名,不带路径
                //获取文件路径,不带文件名
                string FilePath = localFilePath.Substring(0, localFilePath.LastIndexOf("\\"));
                //保存
                ExportToSvc(dt, FilePath, fileNameExt);
                //给文件名前加上时间
                //newFileName = DateTime.Now.ToString("yyyyMMdd") + fileNameExt;
                //在文件名里加字符
                //saveFileDialog1.FileName.Insert(1,"dameng");
                //System.IO.FileStream fs = (System.IO.FileStream)sfd.OpenFile();//输出文件
            }
        }

        /// <summary>
        /// 将datatable中的数据保存到csv中
        /// </summary>
        /// <param name="dt">数据来源</param>
        /// <param name="savaPath">保存的路径</param>
        /// <param name="strName">保存文件的名称</param>
        public static void ExportToSvc(DataTable dt, string savaPath, string strName)
        {
            //string strPath = Path.GetTempPath() + strName + ".csv";//保存到本项目文件夹下

            string strPath = savaPath + "\\" + strName;//保存到指定目录下

            if (File.Exists(strPath))
            {
                File.Delete(strPath);
            }
            //先打印标头
            StringBuilder strColu = new StringBuilder();
            StringBuilder strValue = new StringBuilder();
            int i = 0;
            StreamWriter sw = new StreamWriter(new FileStream(strPath, FileMode.CreateNew), Encoding.GetEncoding("GB2312"));
            try
            {
                for (i = 0; i <= dt.Columns.Count - 1; i++)
                {
                    strColu.Append(dt.Columns[i].ColumnName);
                    strColu.Append(",");
                }
                strColu.Remove(strColu.Length - 1, 1);//移出掉最后一个,字符
                sw.WriteLine(strColu);
                foreach (DataRow dr in dt.Rows)
                {
                    strValue.Remove(0, strValue.Length);//移出
                    for (i = 0; i <= dt.Columns.Count - 1; i++)
                    {
                        strValue.Append(dr[i].ToString());
                        strValue.Append(",");
                    }
                    strValue.Remove(strValue.Length - 1, 1);//移出掉最后一个,字符
                    sw.WriteLine(strValue);
                }
                sw.Close();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
                sw.Close();
            }
            // 完成导出后,打开
            //System.Diagnostics.Process.Start(strPath);
        }
        #endregion

    }
}


将CSV导入到DataTable



namespace Mk.Core
{
    using System;
    using System.Collections;
    using System.Collections.Generic;
    using System.Data;
    using System.IO;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;

    public static class ImportCsv
    {
        public static bool OpenCSVFile(this DataTable mycsvdt, string filepath)
        {
            string strpath = filepath; //csv文件的路径

            try
            {
                bool blnFlag = true;

                DataColumn mydc;
                DataRow mydr;

                string strline;
                string[] aryline;
                StreamReader mysr = new StreamReader(strpath, System.Text.Encoding.Default);

                while ((strline = mysr.ReadLine()) != null)
                {
                    aryline = strline.Split(new char[] { ',' });
                    //第一行是列的名字,给datatable加上列名,
                    if (blnFlag)
                    {
                        blnFlag = false;
                        foreach (var item in aryline)
                        {
                            if (!mycsvdt.Columns.Contains(item))
                            {
                                mydc = new DataColumn(item);
                                mycsvdt.Columns.Add(mydc);
                            }
                        }
                        continue;
                    }
                    //填充数据并加入到datatable中
                    mydr = mycsvdt.Rows.Add(aryline);
                }
                mysr.Close();
                return true;

            }
            catch (Exception)
            {
                return false;
            }
        }

        public static bool OpenCSVFile(this DataTable dt)
        {
            string path = GetImportCsvFilePath();
            if (string.IsNullOrEmpty(path))
            {
                return false;
            }
            return OpenCSVFile(dt, path);
        }

        public static string GetImportCsvFilePath()
        {
            // Displays an OpenFileDialog and shows the read/only files.

            OpenFileDialog dlgOpenFile = new OpenFileDialog();
            dlgOpenFile.ShowReadOnly = true;
            dlgOpenFile.Filter ="CSV (*.CSV)|*.csv";
            dlgOpenFile.FilterIndex = 1;
            dlgOpenFile.RestoreDirectory = true;
            dlgOpenFile.Title = "Choose csv File";
            if (dlgOpenFile.ShowDialog() == DialogResult.OK)
            {
                //文件路径 和文件名字  
               return dlgOpenFile.FileName;
               // fileName = Path.GetFileName(filePath);
                // 获取文件后缀  
                //fileExtension = Path.GetExtension(filePath);
            }
            return "";
        }

    }
}


相关文章

  • C# DataTable和CSV 读取导出

    将DataTable 导出到CSV 将CSV导入到DataTable

  • Golang使用CSV读取、导出文件

    导出csv文件 读取csv

  • 实用函数

    批量更新 去掉二维数组里重复项 读取csv 导出csv

  • 数据清洗

    一、数据的读取与导出 ①. 读取数据:txt、csv和xlsx文件 · 速度最慢 · 中等速度 · 速度最快 ②....

  • C#读取Excel导出的CSV文件

    有时候我们在项目中需要填写一些配置,通常来说用excel会比较方便。那么这些数据在直接放到项目中使用的时候,可以通...

  • neo4j-批量导入工具使用

    从mysql中导出数据存储为csv文件 neo4j 数据库读取csv文件 读取但不存入数据库 读取并存入数据库,需...

  • Matlab处理ILA数据

    在vivado中将ila数据导出成CSV文件格式保存。以下面的csv文件排列为例 MATLAB读取csv文件的代码...

  • Python-01-读取/输出

    """ 第一次尝试:读取excel,导出csv """ import pandasas pd import xlr...

  • csv文件的生成

    列表导出为csv文件 字典导出为csv文件 json导出为csv文件

  • PHP 读取/导出 CSV文件

    工作中经常会有遇到导入/导出的需求,下面是常用的方法。 读取CSV文件,可以分页读取,设置读取行数,起始行数即可。...

网友评论

      本文标题:C# DataTable和CSV 读取导出

      本文链接:https://www.haomeiwen.com/subject/iopkiftx.html