This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can trysigning in orchanging directories.
Access to this page requires authorization. You can trychanging directories.
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Implements aTextReader that reads characters from a byte stream in a particular encoding.
public ref class StreamReader : System::IO::TextReaderpublic class StreamReader : System.IO.TextReader[System.Serializable]public class StreamReader : System.IO.TextReader[System.Serializable][System.Runtime.InteropServices.ComVisible(true)]public class StreamReader : System.IO.TextReadertype StreamReader = class inherit TextReader[<System.Serializable>]type StreamReader = class inherit TextReader[<System.Serializable>][<System.Runtime.InteropServices.ComVisible(true)>]type StreamReader = class inherit TextReaderPublic Class StreamReaderInherits TextReaderThe following example uses an instance ofStreamReader to read text from a file. The constructor used in this example is not supported for use in Windows Store Apps.
using System;using System.IO;class Test{ public static void Main() { try { // Create an instance of StreamReader to read from a file. // The using statement also closes the StreamReader. using (StreamReader sr = new StreamReader("TestFile.txt")) { string line; // Read and display lines from the file until the end of // the file is reached. while ((line = sr.ReadLine()) != null) { Console.WriteLine(line); } } } catch (Exception e) { // Let the user know what went wrong. Console.WriteLine("The file could not be read:"); Console.WriteLine(e.Message); } }}Imports System.IOClass Test Public Shared Sub Main() Try ' Create an instance of StreamReader to read from a file. Dim sr As StreamReader = New StreamReader("TestFile.txt") Dim line As String ' Read and display the lines from the file until the end ' of the file is reached. Do line = sr.ReadLine() Console.WriteLine(Line) Loop Until line Is Nothing sr.Close() Catch E As Exception ' Let the user know what went wrong. Console.WriteLine("The file could not be read:") Console.WriteLine(E.Message) End Try End SubEnd ClassThe following example instantiates aStreamReader object and calls itsReadAsync method to read a file asynchronously.
using System;using System.IO;using System.Threading.Tasks;class Example{ static async Task Main() { await ReadAndDisplayFilesAsync(); } static async Task ReadAndDisplayFilesAsync() { String filename = "TestFile1.txt"; Char[] buffer; using (var sr = new StreamReader(filename)) { buffer = new Char[(int)sr.BaseStream.Length]; await sr.ReadAsync(buffer, 0, (int)sr.BaseStream.Length); } Console.WriteLine(new String(buffer)); }}// The example displays the following output:// This is the first line of text in a relatively short file.// This is the second line.// This is the third line.// This is the fourth and final line.Imports System.IOImports System.Threading.TasksModule Example Public Sub Main() ReadAndDisplayFilesAsync() End Sub Private Async Sub ReadAndDisplayFilesAsync() Dim filename As String = "TestFile1.txt" Dim buffer() As Char Using sr As New StreamReader(filename) ReDim buffer(CInt(sr.BaseStream.Length)) Await sr.ReadAsync(buffer, 0, CInt(sr.BaseStream.Length)) End Using Console.WriteLine(New String(buffer)) End SubEnd Module' The example displays the following output:' This is the first line of text in a relatively short file.' This is the second line.' This is the third line.' This is the fourth and final line.StreamReader is designed for character input in a particular encoding, whereas theStream class is designed for byte input and output. UseStreamReader for reading lines of information from a standard text file.
Important
This type implements theIDisposable interface. When you have finished using the type, you should dispose of it either directly or indirectly. To dispose of the type directly, call itsDispose method in atry/catch block. To dispose of it indirectly, use a language construct such asusing (in C#) orUsing (in Visual Basic). For more information, see the "Using an Object that Implements IDisposable" section in theIDisposable interface topic.
StreamReader defaults to UTF-8 encoding unless specified otherwise, instead of defaulting to the ANSI code page for the current system. UTF-8 handles Unicode characters correctly and provides consistent results on localized versions of the operating system. If you get the current character encoding using theCurrentEncoding property, the value is not reliable until after the firstRead method, since encoding auto detection is not done until the first call to aRead method.
By default, aStreamReader is not thread safe. SeeTextReader.Synchronized for a thread-safe wrapper.
TheRead(Char[], Int32, Int32) andWrite(Char[], Int32, Int32) method overloads read and write the number of characters specified by thecount parameter. These are to be distinguished fromBufferedStream.Read andBufferedStream.Write, which read and write the number of bytes specified by thecount parameter. Use theBufferedStream methods only for reading and writing an integral number of byte array elements.
Note
When reading from aStream, it is more efficient to use a buffer that is the same size as the internal buffer of the stream.
For a list of common I/O tasks, seeCommon I/O Tasks.
| Name | Description |
|---|---|
| StreamReader(Stream, Boolean) | Initializes a new instance of theStreamReader class for the specified stream, with the specified byte order mark detection option. |
| StreamReader(Stream, Encoding, Boolean, Int32, Boolean) | Initializes a new instance of theStreamReader class for the specified stream based on the specified character encoding, byte order mark detection option, and buffer size, and optionally leaves the stream open. |
| StreamReader(Stream, Encoding, Boolean, Int32) | Initializes a new instance of theStreamReader class for the specified stream, with the specified character encoding, byte order mark detection option, and buffer size. |
| StreamReader(Stream, Encoding, Boolean) | Initializes a new instance of theStreamReader class for the specified stream, with the specified character encoding and byte order mark detection option. |
| StreamReader(Stream, Encoding) | Initializes a new instance of theStreamReader class for the specified stream, with the specified character encoding. |
| StreamReader(Stream) | Initializes a new instance of theStreamReader class for the specified stream. |
| StreamReader(String, Boolean) | Initializes a new instance of theStreamReader class for the specified file name, with the specified byte order mark detection option. |
| StreamReader(String, Encoding, Boolean, FileStreamOptions) | Initializes a new instance of theStreamReader class for the specified file path, with the specified character encoding, byte order mark detection option, and configured with the specifiedFileStreamOptions object. |
| StreamReader(String, Encoding, Boolean, Int32) | Initializes a new instance of theStreamReader class for the specified file name, with the specified character encoding, byte order mark detection option, and buffer size. |
| StreamReader(String, Encoding, Boolean) | Initializes a new instance of theStreamReader class for the specified file name, with the specified character encoding and byte order mark detection option. |
| StreamReader(String, Encoding) | Initializes a new instance of theStreamReader class for the specified file name, with the specified character encoding. |
| StreamReader(String, FileStreamOptions) | Initializes a new instance of theStreamReader class for the specified file path, using the default encoding, enabling detection of byte order marks at the beginning of the file, and configured with the specifiedFileStreamOptions object. |
| StreamReader(String) | Initializes a new instance of theStreamReader class for the specified file name. |
| Name | Description |
|---|---|
| Null | AStreamReader object around an empty stream. |
| Name | Description |
|---|---|
| BaseStream | Returns the underlying stream. |
| CurrentEncoding | Gets the current character encoding that the currentStreamReader object is using. |
| EndOfStream | Gets a value that indicates whether the current stream position is at the end of the stream. |
| Name | Description |
|---|---|
| Close() | Closes theStreamReader object and the underlying stream, and releases any system resources associated with the reader. |
| CreateObjRef(Type) | Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object. (Inherited fromMarshalByRefObject) |
| DiscardBufferedData() | Clears the internal buffer. |
| Dispose() | Releases all resources used by theTextReader object. (Inherited fromTextReader) |
| Dispose(Boolean) | Closes the underlying stream, releases the unmanaged resources used by theStreamReader, and optionally releases the managed resources. |
| Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited fromObject) |
| GetHashCode() | Serves as the default hash function. (Inherited fromObject) |
| GetLifetimeService() | Obsolete. Retrieves the current lifetime service object that controls the lifetime policy for this instance. (Inherited fromMarshalByRefObject) |
| GetType() | Gets theType of the current instance. (Inherited fromObject) |
| InitializeLifetimeService() | Obsolete. Obtains a lifetime service object to control the lifetime policy for this instance. (Inherited fromMarshalByRefObject) |
| MemberwiseClone() | Creates a shallow copy of the currentObject. (Inherited fromObject) |
| MemberwiseClone(Boolean) | Creates a shallow copy of the currentMarshalByRefObject object. (Inherited fromMarshalByRefObject) |
| Peek() | Returns the next available character but does not consume it. |
| Read() | Reads the next character from the input stream and advances the character position by one character. |
| Read(Char[], Int32, Int32) | Reads a specified maximum of characters from the current stream into a buffer, beginning at the specified index. |
| Read(Span<Char>) | Reads the characters from the current stream into a span. |
| ReadAsync(Char[], Int32, Int32) | Reads a specified maximum number of characters from the current stream asynchronously and writes the data to a buffer, beginning at the specified index. |
| ReadAsync(Memory<Char>, CancellationToken) | Asynchronously reads the characters from the current stream into a memory block. |
| ReadBlock(Char[], Int32, Int32) | Reads a specified maximum number of characters from the current stream and writes the data to a buffer, beginning at the specified index. |
| ReadBlock(Char[], Int32, Int32) | Reads a specified maximum number of characters from the current text reader and writes the data to a buffer, beginning at the specified index. (Inherited fromTextReader) |
| ReadBlock(Span<Char>) | Reads the characters from the current stream and writes the data to a buffer. |
| ReadBlockAsync(Char[], Int32, Int32) | Reads a specified maximum number of characters from the current stream asynchronously and writes the data to a buffer, beginning at the specified index. |
| ReadBlockAsync(Memory<Char>, CancellationToken) | Asynchronously reads the characters from the current stream and writes the data to a buffer. |
| ReadLine() | Reads a line of characters from the current stream and returns the data as a string. |
| ReadLineAsync() | Reads a line of characters asynchronously from the current stream and returns the data as a string. |
| ReadLineAsync(CancellationToken) | Reads a line of characters asynchronously from the current stream and returns the data as a string. |
| ReadToEnd() | Reads all characters from the current position to the end of the stream. |
| ReadToEndAsync() | Reads all characters from the current position to the end of the stream asynchronously and returns them as one string. |
| ReadToEndAsync(CancellationToken) | Reads all characters from the current position to the end of the stream asynchronously and returns them as one string. |
| ToString() | Returns a string that represents the current object. (Inherited fromObject) |
| Name | Description |
|---|---|
| IDisposable.Dispose() | For a description of this member, seeDispose(). (Inherited fromTextReader) |
Was this page helpful?
Need help with this topic?
Want to try using Ask Learn to clarify or guide you through this topic?
Was this page helpful?
Want to try using Ask Learn to clarify or guide you through this topic?