您好,登錄后才能下訂單哦!
這篇文章給大家介紹C#中怎么操作文本文件,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
C#操作文本文件演練實(shí)例淺析
/* * 本講解用C#如何處理文本文件,內(nèi)容重點(diǎn)是如何建立一個(gè)文件讀取文本文件內(nèi)容 * * 如何改把揚(yáng)輝三角形輸入文件內(nèi)容 * * 下面我介紹一個(gè)幾個(gè)使用的類: * *1.FileInfo類:這個(gè)類提供典型的操作, 比如:復(fù)制、移動(dòng)、重命名、創(chuàng)建、打開、刪除和追加 到文件。如導(dǎo)入現(xiàn)成的文本文件,也可以創(chuàng)建一個(gè)不存在的文件 string path = @"c:\temp\MyTest.txt"; FileInfo fi = new FileInfo(path); 這里的@將一個(gè)字符變成一個(gè)逐字字符串 * *2.StreamReader類和StreamWriter類: 這兩個(gè)類是為了處理字符流特別設(shè)計(jì)的,這些流只能用于文本 文件,無法用于二進(jìn)制文件 * */ using System; using System.IO;//因?yàn)槭俏谋疚募僮?,所以要是用到IO這個(gè)包 namespace yanghuisanjiao { /// ﹤summary﹥ /// Class1 的摘要說明。 /// ﹤/summary﹥ class Program { /// ﹤summary﹥ /// 應(yīng)用程序的主入口點(diǎn),C#操作文本文件 /// ﹤/summary﹥ [STAThread] static void Main(string[] args) { StreamWriter sw; StreamReader inStr = null; string textLine = null; int[,] a = new int[10,10]; a[0,0] = 1;//初始化數(shù)組 for(int i = 1;i ﹤ 10;i++) { a[i,0] = 1; a[i,i] = 1; for(int j = 1;j ﹤ i;j++) { a[i,j] = a[i-1,j-1] + a[i-1,j]; } } try { sw = File.CreateText("yanghui.txt"); //C#操作文本文件//txt文件會(huì)創(chuàng)建到跟目錄下的BIN→Debug下 } catch { Console.WriteLine("不能創(chuàng)建文件!"); return; } for(int i = 0;i ﹤ 10;i++) { for(int j = 0;j ﹤= i;j++) { sw.Write("{0} ",a[i,j]); } sw.WriteLine();//換行 } sw.Close(); //C#操作文本文件//讀取文件yanghui.txt(從Debug文件夾下讀?。?nbsp; FileInfo textFile = new FileInfo(@"yanghui.txt"); inStr = textFile.OpenText(); Console.WriteLine("\n讀取文本文件內(nèi)容如下: \n"); textLine = inStr.ReadLine(); while(textLine != null) { Console.WriteLine(textLine); textLine = inStr.ReadLine(); } inStr.Close(); } } }
關(guān)于C#中怎么操作文本文件就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。