通过实例学C#之FileStream类

server/2024/11/15 6:14:41/

简介

        可以通过此类进行文件读取。

        首先在项目所在文件夹的Bin文件中新建一个test.txt文件,里面输入内容“hello world!”。


构造函数

FileStream (string path, FileMode mode,FileAccess access)

        通过路径文件path,打开文件模式mode以及读写模式access来创建一个fileStream实例对象。


其中,mode模式有以下几种:

1.Append:如果文件存在,那么打开文件,并定位到文件结尾;如果文件不存在,那么新建一个文件。

2.Create:如果文件不存在,则新建文件;如果文件已经存在,那么把原文件覆盖。

3.CreateNew:创建新的文件。

4.Open:打开现有文件

5.OpenOrCreate:如果文件已存在,那么打开文件;否则,创建新文件。


读写模式access有以下几种:

1.Read:可以从文件中读取数据。

2.ReadWrite:可以从文件中读取数据和往文件中写入数据。

3.Write:可以往文件中写入数据。


常用属性

CanRead

        判断filestream是否可读,如果是,返回true,否则,返回false。

static void Main(string[] args)
{string path = "test.txt";FileStream fs = new FileStream(path, FileMode.OpenOrCreate,FileAccess.Read);Console.WriteLine("实例fs是否可读:"+fs.CanRead);fs.Close();FileStream fs1 = new FileStream(path, FileMode.OpenOrCreate, FileAccess.Write);Console.WriteLine("实例fs1是否可读:" + fs1.CanRead);fs.Close();Console.ReadKey();
}运行结果:
实例fs是否可读:True
实例fs1是否可读:False

CanWrite

        判断filestream实例是否可写,如果是,返回true,否则,返回false。

static void Main(string[] args)
{string path = "test.txt";FileStream fs = new FileStream(path, FileMode.OpenOrCreate,FileAccess.Read);Console.WriteLine("实例fs是否可写:"+fs.CanWrite);fs.Close();FileStream fs1 = new FileStream(path, FileMode.OpenOrCreate, FileAccess.Write);Console.WriteLine("实例fs1是否可写:" + fs1.CanWrite);fs.Close();Console.ReadKey();
}运行结果:
实例fs是否可写:False
实例fs1是否可写:True

Length

        获取filestream实例的长度。

 static void Main(string[] args){string path = "test.txt";FileStream fs = new FileStream(path, FileMode.OpenOrCreate,FileAccess.Read);Console.WriteLine("fs读取文档内容长度为:"+fs.Length);fs.Close();Console.ReadKey();}运行结果:
fs读取文档内容长度为:12

Name

        获取filestream对象操作文件的绝对路径。

static void Main(string[] args)
{string path = "test.txt";FileStream fs = new FileStream(path, FileMode.OpenOrCreate,FileAccess.Read);Console.WriteLine("fs读取文件的绝对路径:");Console.WriteLine(fs.Name);fs.Close();Console.ReadKey();
}运行结果:
fs读取文件的绝对路径:
D:\文档\c#\控制台\fileStream\ConsoleApp1\ConsoleApp1\bin\Debug\test.txt

Position

        filestream实例当前所在的位置。


常用方法

Close()

        打开filestream使用以后记得要用Close()方法把流关闭,不然文件被占用,其他程序就无法打开了。


Flush()

        清除此流的缓冲区,使得所有缓冲数据都写入到文件中。


Read (byte[] buffer, int offset, int count)

        将filestream实例从0到count长度的内容读取到byte数组中。

static void Main(string[] args)
{string path = "test.txt";FileStream fs = new FileStream(path, FileMode.OpenOrCreate,FileAccess.Read);byte[] ay = new byte[fs.Length];fs.Read(ay, 0, (int)fs.Length);foreach (byte b in ay){Console.WriteLine(b);}fs.Close();Console.ReadKey();
}运行结果:
104    //h的Ascii码
101    //e的Ascii码
108    //l的Ascii码       
108    //l的Ascii码
111    ...
32
119
111
114
108
100
33

ReadByte()

        从文件中读取一个字节,并将读取位置提升一个字节。

static void Main(string[] args)
{string path = "test.txt";FileStream fs = new FileStream(path, FileMode.OpenOrCreate,FileAccess.Read);Console.WriteLine("fs.positon="+fs.Position);Console.WriteLine("读取第一个字符"+fs.ReadByte());Console.WriteLine("fs.positon=" + fs.Position);Console.WriteLine("读取第二个字符" + fs.ReadByte());Console.WriteLine("fs.positon=" + fs.Position);Console.WriteLine("读取第三个字符" + fs.ReadByte());Console.WriteLine("fs.positon=" + fs.Position);fs.Close();Console.ReadKey();
}运行结果:
fs.positon=0
读取第一个字符104
fs.positon=1
读取第二个字符101
fs.positon=2
读取第三个字符108
fs.positon=3

Seek (long offset, SeekOrigin origin)

        将该流的当前位置设置为给定值。使用该功能,当读取或写入时,可以控制读取和写入的位置。

static void Main(string[] args)
{string path = "test.txt";FileStream fs = new FileStream(path, FileMode.OpenOrCreate,FileAccess.Read);fs.Seek(6,SeekOrigin.Begin);    //文本内容为hello world,w所在index为6,所以把seek定为从开头数起第6位byte[] buffer = new byte[5];    //创建一个大小为5的字节数组,用来读取“world”字符fs.Read(buffer, 0, 5);      //注意,中间的offset,是从seek定位位置开始数,而不是从文本最开头开始数foreach (byte b in buffer){Console.WriteLine(b);}fs.Close();Console.ReadKey();
}运行结果:
119
111
114
108
100
//以上对应world每一位的Ascii码

Write (byte[] buffer, int offset, int count)

        将buffer数组中从offset开始的count个字节写入到filestream中。

static void Main(string[] args)
{string path = "test.txt";FileStream fs = new FileStream(path, FileMode.Append,FileAccess.Write);byte[] write = new byte[] { 115, 117,110 };   //在原来文件末尾增加单词sun,查出sun每个字母对应的ascii码,将其放在一个byte数组中fs.Write(write, 0, write.Length);fs.Close();Console.ReadKey();
}

运行结果:

打开test.txt文件,发现对应的字符已经追加到原有字符后面了。


WriteByte (byte value)

        一个字节写入文件流中的当前位置。

static void Main(string[] args)
{string path = "test.txt";FileStream fs = new FileStream(path, FileMode.Append,FileAccess.Write);byte[] write = new byte[] { 115, 117,110 };   //在原来文件末尾增加单词sun,查出sun每个字母对应的ascii码,将其放在一个byte数组中fs.WriteByte(write[0]);fs.WriteByte(write[1]);fs.WriteByte(write[2]);fs.Close();Console.ReadKey();
}

运行结果:在文本文件内容后面追加"sun"三个字符。


http://www.ppmy.cn/server/2158.html

相关文章

【LeetCode热题100】【贪心算法】跳跃游戏

题目链接:55. 跳跃游戏 - 力扣(LeetCode) 数组的元素表示可以跳的最大长度,要判断能不能跳到最后 不断更新可以跳到的最远距离,如果当前的位置大于可跳最远距离,说明不行 class Solution { public:bool …

计算机视觉入门:探索机器如何“看见”世界

计算机视觉是人工智能领域的一个令人兴奋的分支,它使计算机能够从图像和视频中“看见”和理解世界。这项技术已经渗透到我们生活的方方面面,从智能手机的面部识别到自动驾驶汽车的导航系统。但是,计算机视觉是如何工作的呢?让我们…

【Jupyter notebook】安装-换源-报错问题收集及实测解决法

Jupyter 在一个名为 kernel 的单独进程中运行用户的代码。kernel 可以是不同的 Python 安装在不同的 conda 环境或虚拟环境,甚至可以是不同语言(例如 Julia 或 R)的解释器。 1, 如何查询当前环境下的python 版本 运行 import sys print(sys.executable) %pwd import sy…

麒麟桌面操作系统使用livecd备份数据到U盘

往期好文链接:PXE批量部署麒麟服务器操作系统 Hello,大家好啊!在使用计算机的过程中,数据备份是一个非常重要的环节,特别是当系统发生故障时,备份可以帮助我们迅速恢复重要数据。今天,我将向大家…

git rebase

如果你在Git中工作,并且你的当前开发分支落后于主分支,你可能希望将主分支上的最新更改合并到你的开发分支中以保持同步。同时,如果你不想在将来提交你的分支时包含主分支的合并提交信息,你可以考虑使用“rebase”而不是“merge”…

Git基础操作及其分支管理

目录 一、git的用处? 1.1 git也不是银弹 二、安装git 三、git基础操作 3.1 创建git本地仓库 3.2 配置Git 3.3 认识工作区、暂存区、版本库 3.4 添加文件 3.5 Git文件目录 3.6 版本回退 3.7 撤销修改 3.7.1 对于工作区的代码,还没有进行add操作…

数据结构——链表变形

数据结构——链表变形 带尾指针的链表尾插的变化 循环双向双向循环 我们在上次已经了解了单链表,今天我们来了解一下链表的各种变形,如果还没有了解过上面单链表的小伙伴可以点击这里: https://blog.csdn.net/qq_67693066/article/details/13…

Docker篇(三)— Docker的基本操作

目录 镜像操作镜像名称镜像命令案例1-拉取、查看镜像案例2-保存、导入镜像 镜像操作 镜像名称 首先来看下镜像的名称组成: 镜名称一般分两部分组成:[repository]:[tag]。在没有指定tag时,默认是latest,代表最新版本的镜像 如图…