ekfor

更新时间:2022-11-23 07:15:28 阅读: 评论:0


2022年11月23日发(作者:死亡本能)

C#FileStream对象的Seek()⽅法

FileStream可以随机读写⽂件使⽤Seek⽅法

Seek()----------有两个参数第⼀参数规定⽂件指针以字节为单位移动的距离。第⼆个参数规定开始计算的位置

⽤SeekOrigin枚举的⼀个值表⽰:SeekOrigin有三个值:BeginCurrentEnd。

(8,)---------将⽂件的指针移动到第⼋个字节。起始位置就是⽂件的第⼀个字节。

(-5,);从⽂件的末尾向前查找五个字节。。

(2,t);

以下来⾃MSDN

⽅法

Framework2.0

其他版本

将该流的当前位置设置为给定值。

命名空间:

程序集:mscorlib(在中)

语法

publicoverridelongSeek(

longofft,

SeekOriginorigin

)

范例:

usingSystem;

;

classFStream

{

staticvoidMain()

{

conststringfileName="Test#@@#.dat";

//Createrandomdatatowritetothefile.

byte[]dataArray=newbyte[100000];

newRandom().NextBytes(dataArray);

using(FileStream

fileStream=newFileStream(fileName,))

{

//Writethedatatothefile,bytebybyte.

for(inti=0;i<;i++)

{

yte(dataArray[i]);

}

//Setthestreampositiontothebeginningofthefile.

(0,);

//Readandverifythedata.

for(inti=0;i<;i++)

{

if(dataArray[i]!=te())

{

ine("Errorwritingdata.");

return;

}

}

ine("Thedatawaswrittento{0}"+

"andverified.",);

}

}

}

延伸阅读:

本文发布于:2022-11-23 07:15:28,感谢您对本站的认可!

本文链接:http://www.wtabcd.cn/fanwen/fan/90/4350.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

上一篇:anticipate
下一篇:spend
标签:seekfor
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图