该样例为追加 C盘中的 file1.txt 的文本内容
完整代码例如以下:
引入命名空间:
- using System.IO;
完整代码:
- 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
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/110103.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...