本文介绍了阅读后无法写入文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在下面的代码中,我得到错误 流不可写

In the following code I get the error "stream was not writable":

class Class1
{
    private static void Main()
    {
        FileStream fs = new FileStream("C:\\fFile.txt",
                              FileMode.OpenOrCreate,
                              FileAccess.ReadWrite,
                              FileShare.ReadWrite);

        StreamReader r = new StreamReader(fs);
        string t = r.ReadLine();
        r.Close();
        Console.WriteLine(t);

        StreamWriter w = new StreamWriter(fs);
        w.WriteLine("string");
        w.Flush();
        w.Close();
        fs.Close();

    }
}

此行出现错误 StreamWriter w =新的StreamWriter(fs);

为什么?

推荐答案

来自msdn

关闭StreamReader对象和基础流,并释放任何与阅读器关联的系统资源。

因此,您尝试写入的流无效,您需要重新打开流并重新打开文件。

So the stream you try to write to is invalid you need to reopen the stream and reopen the file.

这篇关于阅读后无法写入文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 15:34