FileStream vs/differences StreamWriter?

假装没事ソ 提交于 2019-12-18 10:01:28

问题


Question:

What is different between FileStream and StreamWriter in .Net?

What context are you supposed to use it? What is their advantage and disadvantage?

Is it possible to combine these two into one?


回答1:


What is different between FileStream and StreamWriter in dotnet?

A FileStream is a Stream. Like all Streams it only deals with byte[] data.

A StreamWriter : TextWriter, is a Stream-decorator. A TextWriter encodes Text data like string or char to byte[] and then writes it to the linked Stream.

What context are you supposed to use it? What is their advantage and disadvantage?

You use a bare FileStream when you have byte[] data. You add a StreamWriter when you want to write text. Use a Formatter or a Serializer to write more complex data.

Is it possible to combine these two into one?

Yes. You always need a Stream to create a StreamWriter. The helper method System.IO.File.CreateText("path") will create them in combination and then you only have to Dispose() the outer writer.




回答2:


FileStream writes bytes, StreamWriter writes text. That's all.




回答3:


A FileStream is explicitly intended for working files.

A StreamWriter can be used to stream to any type of Stream - network sockets, files, etc.

ScottGu explains the different Stream objects quite nicely here: http://www.codeguru.com/Csharp/Csharp/cs_data/streaming/article.php/c4223




回答4:


Well, from the MSDN for FileStream:

Exposes a Stream around a file, supporting both synchronous and asynchronous read and write operations.

and the MSDN for StreamWriter:

Implements a TextWriter for writing characters to a stream in a particular encoding.

The most obvious difference is that FileStream allows read/write operations, while StreamWriter is write only.

The StreamWriter page goes on to add:

StreamWriter is designed for character output in a particular encoding, whereas classes derived from Stream are designed for byte input and output.

So a second difference is that FileStream is for bytes, while StreamWriter is for text.




回答5:


They are two different levels used in outputting information to known data sources.

A FileStream is a type of Stream, which is conceptually a mechanism that points to some location and can handle incoming and/or outgoing data to and from that location. Streams exist for reading/writing to files, network connections, memory, pipes, the console, debug and trace listeners, and a few other types of data sources. Specifically, a FileStream exists to perform reads and writes to the file system. Most streams are pretty low-level in their usage, and deal with data as bytes.

A StreamWriter is a wrapper for a Stream that simplifies using that stream to output plain text. It exposes methods that take strings instead of bytes, and performs the necessary conversions to and from byte arrays. There are other Writers; the other main one you'd use is the XmlTextWriter, which facilitates writing data in XML format. There are also Reader counterparts to the Writers that similarly wrap a Stream and facilitate getting the data back out.




回答6:


One key difference (in addition to the above comments), could be that FileStream supports random disk acceess read and writes to any specified FileStream.Position. For large file modifications, that can be invaluable.



来源:https://stackoverflow.com/questions/4963667/filestream-vs-differences-streamwriter

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!