C#讀取txt文件數據的方法實例
第一步新建txt文件,寫入內容
我是放在D盤下的,數據以逗號隔開的,是英文逗號
第二步讀取數據
在需要讀取數據的頁面,添加代碼,就可以瞭
private void Phone_Load(object sender, EventArgs e) { string ReadLine; string[] array; string Path = @"D:\FrontierApp.TXT"; StreamReader reader = new StreamReader(Path,System.Text.Encoding.GetEncoding("GB2312")); while (reader.Peek() >= 0) { try { ReadLine = reader.ReadLine(); if (ReadLine != "") { ReadLine = ReadLine.Replace("\"", ""); array = ReadLine.Split(','); if (array.Length == 0) { MessageBox.Show("您選擇的導入數據類型有誤,請重試!"); return; } for (int i = 0; i < array.Length; i++) { comboBox2.Items.Add(array[i]); } } } catch (Exception ex) { MessageBox.Show(ex.ToString()); } } }
最終效果圖
更多關於C#讀寫txt文件的內容可以參考這篇文章:https://www.jb51.net/article/212136.htm
總結
到此這篇關於C#讀取txt文件數據的文章就介紹到這瞭,更多相關C#讀取txt文件數據內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- C#中ftp檢測目錄是否存在和創建文件夾的實現
- C# StreamReader類實現讀取文件的方法
- c# 使用線程對串口serialPort進行收發數據(四種)
- C# 拼圖遊戲的實戰(附demo)
- C#實現串口示波器