C#通过流写入一行数据到文件的方法
更新时间:2015年07月15日 13:00:27 作者:pythoner
这篇文章主要介绍了C#通过流写入一行数据到文件的方法,涉及C#针对文本文件读写的基本技巧,具有一定参考借鉴价值,需要的朋友可以参考下
本文实例讲述了C#通过流写入一行数据到文件的方法。分享给大家供大家参考。具体如下:
using System; using System.IO; public class WriteFileStuff { public static void Main() { FileStream fs = new FileStream("c:\\tmp\\WriteFileStuff.txt", FileMode.OpenOrCreate, FileAccess.Write); StreamWriter sw = new StreamWriter(fs); try { sw.WriteLine("Howdy World."); } finally { if(sw != null) { sw.Close(); } } } }
希望本文所述对大家的C#程序设计有所帮助。
相关文章
基于WebRequest.RegisterPrefix的使用详解
本篇文章对WebRequest.RegisterPrefix的使用进行了详细的分析介绍,需要的朋友参考下2013-05-05C#语言使用gRPC、protobuf(Google Protocol Buffers)实现文件传输功能
这篇文章主要介绍了C#语言使用gRPC、protobuf(Google Protocol Buffers)实现文件传输功能,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2020-10-10
最新评论