本篇內(nèi)容主要講解“C#操作文本文件的實(shí)現(xiàn)方式”,感興趣的朋友不妨來看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“C#操作文本文件的實(shí)現(xiàn)方式”吧!
創(chuàng)新互聯(lián)專注于望謨網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供望謨營(yíng)銷型網(wǎng)站建設(shè),望謨網(wǎng)站制作、望謨網(wǎng)頁設(shè)計(jì)、望謨網(wǎng)站官網(wǎng)定制、小程序制作服務(wù),打造望謨網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供望謨網(wǎng)站排名全網(wǎng)營(yíng)銷落地服務(wù)。
C#操作文本文件是如何實(shí)現(xiàn)的呢?讓我們開始講述吧:
using System.IO; //聲明控件 protected System.Web.UI.HtmlControls.HtmlTextArea txtValue;
C#操作文本文件之讀取文本文件:
//主程序 FileStream fsInfo = new FileStream( "文件路徑(在項(xiàng)目?jī)?nèi)的)", FileMode.Open, FileAccess.Read ); StreamReader srInfo = new StreamReader( fsInfo, System.Text. Encoding.GetEncoding( "GB2312" ) ); srInfo.BaseStream.Seek( 0, SeekOrigin.Begin ); txtValue.Value = " "; string strLine = srInfo.ReadInfo(); while( strLine != null ) { txtValue.Value += strLine + "\n"; strLine = srInfo.ReadLine(); } srInfo.Close();
C#操作文本文件之寫入文本文件:
//主程序 FileStream fsInfo = new FileStream( 文件路徑(在項(xiàng)目?jī)?nèi)的)", FileMode.OpenOrCreate, FileAccess.Write ); StreamWriter swInfo = new StreamWriter( fsInfo ); swInfo.Flush(); swInfo.BaseStream.Seek( 0, SeekOrigin.Begin ); swInfo.Write( txtValue.Value ); swInfo.Flush(); swInfo.Close();
到此,相信大家對(duì)“C#操作文本文件的實(shí)現(xiàn)方式”有了更深的了解,不妨來實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!