从位置读取文件

发布于 2024-12-07 08:10:36 字数 267 浏览 0 评论 0原文

FileStream infile = new FileStream(@"C:\Users\John\Desktop\ProjectNew\nov.txt",     FileMode.Open, FileAccess.Read);
        int position = x.Length;
        infile.Seek(position, SeekOrigin.Begin);

但Seek方法返回数字。如何从字符串中的位置读取文件“infile”?

FileStream infile = new FileStream(@"C:\Users\John\Desktop\ProjectNew\nov.txt",     FileMode.Open, FileAccess.Read);
        int position = x.Length;
        infile.Seek(position, SeekOrigin.Begin);

But Seek method returns number. How to read the file 'infile' from position to end in a string?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一抹淡然 2024-12-14 08:10:36

这就是你所追求的吗?假设您想从位置 100 开始阅读......

       using (FileStream fs = new FileStream(@"file.txt", FileMode.Open, FileAccess.Read))
        {
            fs.Seek(100, SeekOrigin.Begin);

            byte[] b = new byte[fs.Length - 100];
            fs.Read(b, 0, (int)(fs.Length - 100));

            string s = System.Text.Encoding.UTF8.GetString(b);
        }

Is this what you're after? Assuming you wanted to start reading from position 100...

       using (FileStream fs = new FileStream(@"file.txt", FileMode.Open, FileAccess.Read))
        {
            fs.Seek(100, SeekOrigin.Begin);

            byte[] b = new byte[fs.Length - 100];
            fs.Read(b, 0, (int)(fs.Length - 100));

            string s = System.Text.Encoding.UTF8.GetString(b);
        }
失去的东西太少 2024-12-14 08:10:36

Seek 方法应该返回一个数字,流中的新位置。现在只需调用您想要的任何 Read 函数即可。

The Seek method is supposed to return a number, the new position in the stream. Now just call whatever Read function you want.

行至春深 2024-12-14 08:10:36

Seek() 只将文件指针放置在其他地方。如果您在查找之前进行读取,它将从文件的开头读取。如果您在查找后读取,它将从位置开始读取。

因此,要从该位置读取文件到末尾,请执行 Seek(),然后执行 Read()ReadToEnd()

Seek() only places the file pointer somewhere else. If you do a read before the seek, it will read from the beginning of the file. If you read after the seek, it will start reading from position.

So to read the file from position to the end, do Seek(), followed by Read() or ReadToEnd().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文