C#讀取txt文件返回DATATABLE


//1.打開資源管理器

OpenFileDialog open = new OpenFileDialog();

  if (open.ShowDialog() == DialogResult.OK)            

{              

   textBox1.Text =open.FileName;       

 }

//傳入txt文件路徑參數 讀取txt文件所有內容 返回DATATABLE

 public DataTable GetTxt(string pths)
        {
            StreamReader sr = new StreamReader(pths, Encoding.GetEncoding("GB2312"));
            string txt = sr.ReadToEnd().Replace("\r\n", "-");
            string[] nodes = txt.Split('-');
            DataTable dt = new DataTable();
            dt.Columns.Add("ID", typeof(string));
            foreach (string node in nodes)
            {
                string[] strs = node.Split('-');
                DataRow dr = dt.NewRow();
                dr["ID"] = strs[0];
                dt.Rows.Add(dr);
            }
            return dt;
        }


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM