专业网站建设品牌,十四年专业建站经验,服务6000+客户--广州京杭网络
免费热线:400-683-0016      微信咨询  |  联系我们

C#写入txt文件的几种方式

当前位置:网站建设 > 技术支持
资料来源:网络整理       时间:2023/2/14 1:13:46       共计:3607 浏览
网页内容保存:


1. FileStream.Write


string filePath = Directory.GetCurrentDirectory() + "\\" + Process.GetCurrentProcess().ProcessName + ".txt";

if (File.Exists(filePath))

File.Delete(filePath);


FileStream fs = new FileStream(filePath, FileMode.Create);

//获得字节数组


string xyPointer = string.Format("X: {0}, Y: {1}", this.Location.X.ToString(), this.Location.Y.ToString());

string highWidth = string.Format("\nW: {0}, H: {1}", this.Width.ToString(), this.Height.ToString());

byte[] data = System.Text.Encoding.Default.GetBytes(xyPointer + highWidth);

//开始写入

fs.Write(data, 0, data.Length);

//清空缓冲区、关闭流

fs.Flush();

fs.Close();


2. File.WriteAllLines


//如果文件不存在,则创建;存在则覆盖

//该方法写入字符数组换行显示

string[] lines = { "first line", "second line", "third line", "第四行" };

System.IO.File.WriteAllLines(@"C:\testDir\test.txt", lines, Encoding.UTF8);


3. File.WriteAllText


//如果文件不存在,则创建;存在则覆盖

string strTest = "该例子测试一个字符串写入文本文件。";

System.IO.File.WriteAllText(@"C:\testDir\test1.txt", strTest, Encoding.UTF8);


4. StreamWriter.Write


//在将文本写入文件前,处理文本行

//StreamWriter一个参数默认覆盖

//StreamWriter第二个参数为false覆盖现有文件,为true则把文本追加到文件末尾

using (System.IO.StreamWriter file = new System.IO.StreamWriter(@"C:\testDir\test2.txt", true))

{

foreach (string line in lines)

{

if (!line.Contains("second"))

{

file.Write(line);//直接追加文件末尾,不换行

file.WriteLine(line);// 直接追加文件末尾,换行

}

}

}

版权说明:
本网站凡注明“广州京杭 原创”的皆为本站原创文章,如需转载请注明出处!
本网转载皆注明出处,遵循行业规范,如发现作品内容版权或其它问题的,请与我们联系处理!
欢迎扫描右侧微信二维码与我们联系。
·上一条:百度如何判定网站seo的关键词找长尾关键词 | ·下一条:c#中datatable如何使用System.Linq进行条件查询SELECT

Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有    粤ICP备16019765号 

广州京杭网络科技有限公司 版权所有