该样例为追加 C盘中的 file1.txt 的文本内容
完整代码例如以下:
引入命名空间:
完整代码:
- namespace FileStreamWrite
- {
- class Program
- {
- static void Main(string[] args)
- {
- FileStream fs = null;
- string filePath = "C:\\file1.txt";
-
- Encoding encoder = Encoding.UTF8;
- byte[] bytes = encoder.GetBytes("Hello World! \n\r");
- try
- {
- fs = File.OpenWrite(filePath);
-
- fs.Position = fs.Length;
-
- fs.Write(bytes, 0, bytes.Length);
- }
- catch (Exception ex)
- {
- Console.WriteLine("文件打开失败{0}", ex.ToString());
- }
- finally
- {
- fs.Close();
- }
- Console.ReadLine();
- }
- }
- }
以上为完整代码!
代码中
- fs = File.OpenWrite(filePath);
-
- fs.Position = fs.Length;
等价于
- fs = File.Open(filePath, FileMode.Append, FileAccess.ReadWrite);
执行。。。没效果如,呵呵,直接追加进去了,点击文本就可以看到效果了。
若以上代码编译有问题,可下载项目文件直接编译: http://download.csdn.net/source/3465946
|
请发表评论