StreamWriter.Close 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
关闭当前 StreamWriter
对象和基础流。
public:
override void Close();
public override void Close ();
override this.Close : unit -> unit
Public Overrides Sub Close ()
例外
当前编码不支持显示半个 Unicode 代理项对。
示例
下面的代码示例演示 Close
了 方法。
// close the file by closing the writer
sw->Close();
// close the file by closing the writer
sw.Close();
' Close the file by closing the writer.
Sw.Close()
注解
此方法重写 Stream.Close。
的 Close 此实现调用 Dispose 传递 true
值的方法。
必须调用 Close 以确保所有数据都正确写出到基础流。 调用 Close后,对 StreamWriter 的任何操作都可能会引发异常。 如果磁盘上的空间不足,调用 Close 将引发异常。
除非显式调用 Flush 或 Close,否则刷新流不会刷新其基础编码器。 将 设置为 AutoFlushtrue
表示数据将从缓冲区刷新到流,但不会刷新编码器状态。 这允许编码器将其状态保留 (部分字符) ,以便可以正确编码下一个字符块。 此方案会影响 UTF8 和 UTF7,其中某些字符只能在编码器收到相邻字符后进行编码。