FileStream StreamReader problem in C# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T01:20:38Z http://stackoverflow.com/feeds/question/286533 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/286533/filestream-streamreader-problem-in-c 4 FileStream StreamReader problem in C# Vordreller 2008-11-13T08:38:02Z 2009-06-13T04:14:46Z <p>I'm testing how the classes FileStream and StreamReader work togheter. Via a Console application. I'm trying to go in a file and read the lines and print them on the console.</p> <p>I've been able to do it with a while-loop, but I want to try it with a foreach loop.</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace testing { public class Program { public static void Main(string[] args) { string file = @"C:\Temp\New Folder\New Text Document.txt"; using(FileStream fs = new FileStream(file, FileMode.Open, FileAccess.Read)) { using(StreamReader sr = new StreamReader(fs)) { foreach(string line in file) { Console.WriteLine(line); } } } } } } </code></pre> <p>The error I keep getting for this is: Cannot convert type 'char' to 'string'</p> <p>The while loop, which does work, looks like this:</p> <pre><code>while((line = sr.ReadLine()) != null) { Console.WriteLine(line); } </code></pre> <p>I'm probably overlooking something really basic, but I can't see it.</p> http://stackoverflow.com/questions/286533/filestream-streamreader-problem-in-c/286539#286539 1 Answer by TcKs for FileStream StreamReader problem in C# TcKs 2008-11-13T08:41:58Z 2008-11-13T08:41:58Z <p>The problem is in:</p> <pre><code>foreach(string line in file) { Console.WriteLine(line); } </code></pre> <p>Its because the "file" is string, and string implements IEnumerable. But this enumerator returns "char" and "char" can not be implictly converted to string.</p> <p>You should use the while loop, as you sayd.</p> http://stackoverflow.com/questions/286533/filestream-streamreader-problem-in-c/286541#286541 0 Answer by vimpyboy for FileStream StreamReader problem in C# vimpyboy 2008-11-13T08:42:29Z 2008-11-13T08:42:29Z <p>You are enumerating a string, and when you do that, you take one char at the time.</p> <p>Are you sure this is what you want?</p> <pre><code>foreach(string line in file) </code></pre> http://stackoverflow.com/questions/286533/filestream-streamreader-problem-in-c/286547#286547 1 Answer by VVS for FileStream StreamReader problem in C# VVS 2008-11-13T08:44:35Z 2008-11-13T08:54:16Z <p>Looks like homework to me ;)</p> <p>You're iterating over the filename (a string) itself which gives you one character at a time. Just use the while approach that correctly uses sr.ReadLine().</p> http://stackoverflow.com/questions/286533/filestream-streamreader-problem-in-c/286551#286551 0 Answer by gimel for FileStream StreamReader problem in C# gimel 2008-11-13T08:45:56Z 2008-11-13T08:57:33Z <p>Instead of using a <code>StreamReader</code> and then trying to find lines inside the <code>String file</code> variable, you can simply use <code>File.ReadAllLines</code>:</p> <pre><code>string[] lines = File.ReadAllLines(file); foreach(string line in lines) Console.WriteLine(line); </code></pre> http://stackoverflow.com/questions/286533/filestream-streamreader-problem-in-c/286552#286552 0 Answer by VVS for FileStream StreamReader problem in C# VVS 2008-11-13T08:46:26Z 2008-11-13T08:46:26Z <p>A simplistic (not memory efficient) approach of iterating every line in a file is</p> <pre><code>foreach (string line in File.ReadAllLines(file)) { .. } </code></pre> http://stackoverflow.com/questions/286533/filestream-streamreader-problem-in-c/286553#286553 7 Answer by Marc Gravell for FileStream StreamReader problem in C# Marc Gravell 2008-11-13T08:46:58Z 2008-11-13T09:17:58Z <p>If you want to read a file line-by-line via foreach (in a reusable fashion), consider the following iterator block:</p> <pre><code> public static IEnumerable&lt;string&gt; ReadLines(string path) { using (StreamReader reader = File.OpenText(path)) { string line; while ((line = reader.ReadLine()) != null) { yield return line; } } } </code></pre> <p>Note that this this is lazily evaluated - there is none of the buffering that you would associate with <code>File.ReadAllLines()</code>. The <code>foreach</code> syntax will ensure that the iterator is <code>Dispose()</code>d correctly even for exceptions, closing the file:</p> <pre><code>foreach(string line in ReadLines(file)) { Console.WriteLine(line); } </code></pre> <p><hr /></p> <p>(this bit is added just for interest...)</p> <p>Another advantage of this type of abstraction is that it plays beautifully with LINQ - i.e. it is easy to do transformations / filters etc with this approach:</p> <pre><code> DateTime minDate = new DateTime(2000,1,1); var query = from line in ReadLines(file) let tokens = line.Split('\t') let person = new { Forname = tokens[0], Surname = tokens[1], DoB = DateTime.Parse(tokens[2]) } where person.DoB &gt;= minDate select person; foreach (var person in query) { Console.WriteLine("{0}, {1}: born {2}", person.Surname, person.Forname, person.DoB); } </code></pre> <p>And again, all evaluated lazily (no buffering).</p> http://stackoverflow.com/questions/286533/filestream-streamreader-problem-in-c/286554#286554 0 Answer by RichS for FileStream StreamReader problem in C# RichS 2008-11-13T08:47:07Z 2008-11-13T08:47:07Z <p>I presume you want something like this:</p> <pre><code>using ( FileStream fileStream = new FileStream( file, FileMode.Open, FileAccess.Read ) ) { using ( StreamReader streamReader = new StreamReader( fileStream ) ) { string line = ""; while ( null != ( line = streamReader.ReadLine() ) ) { Console.WriteLine( line ); } } } </code></pre> http://stackoverflow.com/questions/286533/filestream-streamreader-problem-in-c/286556#286556 1 Answer by Aleksandar for FileStream StreamReader problem in C# Aleksandar 2008-11-13T08:47:50Z 2008-11-13T08:47:50Z <p>To read all lines in New Text Document.txt:</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace testing { public class Program { public static void Main(string[] args) { string file = @"C:\Temp\New Folder\New Text Document.txt"; using(FileStream fs = new FileStream(file, FileMode.Open, FileAccess.Read)) { using(StreamReader sr = new StreamReader(fs)) { while(!sr.EndOfStream) { Console.WriteLine(sr.ReadLine()); } } } } } } </code></pre> http://stackoverflow.com/questions/286533/filestream-streamreader-problem-in-c/286598#286598 6 Answer by Jon Skeet for FileStream StreamReader problem in C# Jon Skeet 2008-11-13T09:13:40Z 2008-11-13T09:19:55Z <p>I have a <code>LineReader</code> class in my <a href="http://pobox.com/~skeet/csharp/miscutil" rel="nofollow">MiscUtil</a> project. It's slightly more general than the solutions given here, mostly in terms of the way you can construct it:</p> <ul> <li>From a function returning a stream, in which case it will use UTF-8</li> <li>From a function returning a stream, and an encoding</li> <li>From a function which returns a text reader</li> <li>From just a filename, in which case it will use UTF-8</li> <li>From a filename and an encoding</li> </ul> <p>The class "owns" whatever resources it uses, and closes them appropriately. However, it does this without implementing <code>IDisposable</code> itself. This is why it takes <code>Func&lt;Stream&gt;</code> and <code>Func&lt;TextReader&gt;</code> instead of the stream or the reader directly - it needs to be able to defer the opening until it needs it. It's the iterator itself (which is automatically disposed by a <code>foreach</code> loop) which closes the resource.</p> <p>As Marc pointed out, this works really well in LINQ. One example I like to give is:</p> <pre><code>var errors = from file in Directory.GetFiles(logDirectory, "*.log") from line in new LineReader(file) select new LogEntry(line) into entry where entry.Severity == Severity.Error select entry; </code></pre> <p>This will stream all the errors from a whole bunch of log files, opening and closing as it goes. Combined with Push LINQ, you can do all kinds of nice stuff :)</p> <p>It's not a particularly "tricky" class, but it's really handy. Here's the full source, for convenience if you don't want to download MiscUtil. The licence for the source code is <a href="http://www.yoda.arachsys.com/csharp/miscutil/licence.txt" rel="nofollow">here</a>.</p> <pre><code>using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Text; namespace MiscUtil.IO { /// &lt;summary&gt; /// Reads a data source line by line. The source can be a file, a stream, /// or a text reader. In any case, the source is only opened when the /// enumerator is fetched, and is closed when the iterator is disposed. /// &lt;/summary&gt; public sealed class LineReader : IEnumerable&lt;string&gt; { /// &lt;summary&gt; /// Means of creating a TextReader to read from. /// &lt;/summary&gt; readonly Func&lt;TextReader&gt; dataSource; /// &lt;summary&gt; /// Creates a LineReader from a stream source. The delegate is only /// called when the enumerator is fetched. UTF-8 is used to decode /// the stream into text. /// &lt;/summary&gt; /// &lt;param name="streamSource"&gt;Data source&lt;/param&gt; public LineReader(Func&lt;Stream&gt; streamSource) : this(streamSource, Encoding.UTF8) { } /// &lt;summary&gt; /// Creates a LineReader from a stream source. The delegate is only /// called when the enumerator is fetched. /// &lt;/summary&gt; /// &lt;param name="streamSource"&gt;Data source&lt;/param&gt; /// &lt;param name="encoding"&gt;Encoding to use to decode the stream /// into text&lt;/param&gt; public LineReader(Func&lt;Stream&gt; streamSource, Encoding encoding) : this(() =&gt; new StreamReader(streamSource(), encoding)) { } /// &lt;summary&gt; /// Creates a LineReader from a filename. The file is only opened /// (or even checked for existence) when the enumerator is fetched. /// UTF8 is used to decode the file into text. /// &lt;/summary&gt; /// &lt;param name="filename"&gt;File to read from&lt;/param&gt; public LineReader(string filename) : this(filename, Encoding.UTF8) { } /// &lt;summary&gt; /// Creates a LineReader from a filename. The file is only opened /// (or even checked for existence) when the enumerator is fetched. /// &lt;/summary&gt; /// &lt;param name="filename"&gt;File to read from&lt;/param&gt; /// &lt;param name="encoding"&gt;Encoding to use to decode the file /// into text&lt;/param&gt; public LineReader(string filename, Encoding encoding) : this(() =&gt; new StreamReader(filename, encoding)) { } /// &lt;summary&gt; /// Creates a LineReader from a TextReader source. The delegate /// is only called when the enumerator is fetched /// &lt;/summary&gt; /// &lt;param name="dataSource"&gt;Data source&lt;/param&gt; public LineReader(Func&lt;TextReader&gt; dataSource) { this.dataSource = dataSource; } /// &lt;summary&gt; /// Enumerates the data source line by line. /// &lt;/summary&gt; public IEnumerator&lt;string&gt; GetEnumerator() { using (TextReader reader = dataSource()) { string line; while ((line = reader.ReadLine()) != null) { yield return line; } } } /// &lt;summary&gt; /// Enumerates the data source line by line. /// &lt;/summary&gt; IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } } } </code></pre> http://stackoverflow.com/questions/286533/filestream-streamreader-problem-in-c/989960#989960 0 Answer by Ron for FileStream StreamReader problem in C# Ron 2009-06-13T04:14:46Z 2009-06-13T04:14:46Z <p>What a great discussion. For me, I was particularly interested in working with LINQ query. Below is some code that I put together. What I don't understand is how do I deal with a field that may contain comma(s).</p> <pre><code>var query = from record in csvData let fields = record.Split(',') let productData = new { partNumber = fields[0], color = fields[1], partWidth = fields[2], partLength = fields[3], partNumber = fields[4], drawingNumber = fields[5], ecnNumber = fields[6], changeOrder = fields[7], partDescription = fields[8] } select productData; </code></pre> <p>Thank You</p>