91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#操作文本文件應用的示例分析

發布時間:2021-11-03 09:08:15 來源:億速云 閱讀:146 作者:柒染 欄目:編程語言

本篇文章給大家分享的是有關C#操作文本文件應用的示例分析,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

C#操作文本文件應用實例:

using System;  using System.Data;  using System.Configuration;  using System.Web;  using System.Web.Security;  using System.Web.UI;  using System.Web.UI.WebControls;  using System.Web.UI.WebControls.WebParts;  using System.Web.UI.HtmlControls;  using System.IO;  using System.Text;   /// ﹤summary﹥C#操作文本文件應用實例  /// C#操作文本文件的類  /// 程序(網站)所在目錄:D:\Test  /// 操作的文本文件:D:\Test\file  /// ﹤/summary﹥  public partial class _Default : System.Web.UI.Page  {  //在讀取txt文件中的中文時出現亂碼,  //解決辦法:StreamReader sr = new StreamReader(  fileName,Encoding.GetEncoding("gb2312"));  protected void Page_Load(object sender, EventArgs e)  {  #region C#讀取文本文件 (亂碼已解決)  {  string fileName = Server.MapPath(@"~\file") + @"\read.txt";  StreamReader sr = new StreamReader(fileName,   Encoding.GetEncoding("gb2312"));  //以gb2312字符編碼格式讀取文本。  string str;  string result = "";  while ((str = sr.ReadLine()) != null)//讀取每一行  {  result += str;  }  sr.Close();  sr.Dispose();  }  #endregion   #region C#寫入文本文件C#操作文本文件應用實例  {  //string path = Server.MapPath(@".\file");  //這兩句等效。  //string path3 = Server.MapPath(@"~\file");  //CreateText():  //創建或打開一個文件用于寫入 UTF-8 編碼的文本。  StreamWriter rw = File.CreateText(Server.MapPath(@".\file")   + @"\write.txt");  rw.WriteLine("你好"); //寫入三行數據。  rw.WriteLine("hello");  rw.WriteLine("中國");  rw.Flush();  rw.Close();  rw.Dispose();  }  #endregion   #region 打開文本文件以進行讀取。(讀取中文出現亂碼)  {  //C#操作文本文件應用實例//OpenText():打開現有 UTF-8 編碼文本文件以進行讀取。  StreamReader sr = File.OpenText(  Server.MapPath(@".\file") + @"\open.txt");  StringBuilder output = new StringBuilder();  string str;  while ((str = sr.ReadLine()) != null)  {  output.Append(str + "+");  }  string result = output.ToString();  sr.Close();  sr.Dispose();  }  #endregion   #region C#追加文本到現有文件  {  //C#操作文本文件應用實例//File.AppendText():  // 創建一個 StreamWriter,它將 UTF-8 編碼文本追加到現有文件。   StreamWriter sw = File.AppendText(  Server.MapPath(@".\file") + @"\append.txt");  sw.WriteLine("歡迎");  sw.WriteLine("來");  sw.WriteLine("中國");  sw.Flush();  sw.Close();  sw.Dispose();  }  #endregion   #region C#拷貝文件  {  string from, to;  from = Server.MapPath(@".\file") + @"\copyFrom.txt";  to = Server.MapPath(@".\file") + @"\copyTo.txt";  File.Copy(from, to, true);  //true/false:是否允許改寫目標文件。如果目標文件不存在,會自動創建。  }  #endregion   #region C#刪除文件  {  string delFile = Server.MapPath(@".\file") + @"\delFile.txt";  //要刪除的文件路徑  File.Delete(delFile);  }  #endregion   #region C#移動文件  {  //string From, To;  //From = Server.MapPath(".") + @"\MoveFrom.txt";  //To = Server.MapPath(@".\file") + @"\MoveFromTo.txt";  //File.Move(From, To);//移動并可重明名  }  #endregion   #region C#創建目錄 // Directory - DirectoryInfo  {  DirectoryInfo d = Directory.CreateDirectory(  Server.MapPath(@".\file") + @"\CreateDirectory");  //創建子目錄  DirectoryInfo d1 = d.CreateSubdirectory("CreateDirectory1");  DirectoryInfo d2 = d1.CreateSubdirectory("CreateDirectory2");   //應用程序的當前工作目錄:  //D:\Program Files\Microsoft Visual Studio 8\Common7\IDE  string cur = Directory.GetCurrentDirectory();  //將當前目錄設為Server.MapPath(@".\file")  Directory.SetCurrentDirectory(Server.MapPath(@".\file"));  //(在當前工作目錄)創建目錄  DirectoryInfo d3 = Directory.CreateDirectory("sixAge2");  //創建目錄 C#操作文本文件應用實例DirectoryInfo d4 = Directory.CreateDirectory(@"sixAge2\sixAge2_1");  //應用程序的當前工作目錄  string cur1 = Directory.GetCurrentDirectory();  }  #endregion  }  }

注釋:在D盤根目錄下創建以Test命明名的網站。

C#操作文本文件應用實例的基本內容就向你介紹到這里。

以上就是C#操作文本文件應用的示例分析,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南京市| 永昌县| 财经| 五指山市| 黄大仙区| 吐鲁番市| 左贡县| 旬阳县| 姜堰市| 保德县| 天全县| 泰顺县| 盐边县| 安泽县| 辽宁省| 望江县| 大方县| 丹巴县| 托克逊县| 奉贤区| 太仓市| 鹤峰县| 沛县| 大渡口区| 长汀县| 汉阴县| 保康县| 牙克石市| 丰县| 堆龙德庆县| 长沙县| 东方市| 类乌齐县| 新河县| 裕民县| 仁怀市| 唐河县| 曲沃县| 栾川县| 汽车| 金山区|