Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
5answers
7k views

Does disposing streamreader close the stream?

I am sending a stream to methods to write on, and in those methods I am using a binary reader/wrtier. When the reader/writer gets disposed, either by using or just when it is not referenced, is the ...
13
votes
6answers
372 views

How to count lines fast?

I tried unxutils' wc -l but it crashed for 1GB files. I tried this C# code long count = 0; using (StreamReader r = new StreamReader(f)) { string line; while ((line = r.ReadLine()) != null) ...
11
votes
5answers
1k views

StreamReader ReadToEnd() returns empty string on first attempt

I know this question has been asked before on Stackoverflow, but could not find an explanation. When I try to read a string from a compressed byte array I get an empty string on the first attempt, on ...
8
votes
1answer
95 views

An elegant way to consume (all bytes of a) BinaryReader?

Is there an elegant to emulate the StreamReader.ReadToEnd method with BinaryReader? Perhaps to put all the bytes into a byte array? I do this: read1.ReadBytes((int)read1.BaseStream.Length); ...but ...
8
votes
6answers
484 views

Do I need to explicitly close the StreamReader in C# when using it to load a file into a string variable?

Example: variable = new StreamReader( file ).ReadToEnd(); Is that acceptable?
8
votes
6answers
7k views

C# HTTPWebResponse + StreamReader Very Slow!

I'm trying to implement a limited web crawler in C# (for a few hundred sites only) using HttpWebResponse.GetResponse() and Streamreader.ReadToEnd() , also tried using StreamReader.Read() and a loop to ...
8
votes
9answers
6k views

.NET C# - Random access in text files - no easy way?

I've got a text file that contains several 'records' inside of it. Each record contains a name and a collection of numbers as data. I'm trying to build a class that will read through the file, ...
6
votes
2answers
266 views

How to skip invalid characters in stream in Java/Scala?

For example I have following code Source.fromFile(new File( path), "UTF-8").getLines() and it throws exception Exception in thread "main" java.nio.charset.MalformedInputException: Input length = ...
6
votes
6answers
14k views

Reading large text files with streams in C#

I've got the lovely task of working out how to handle large files being loaded into our application's script editor (its like VBA for our internal product for quick macros). Most files are about ...
6
votes
3answers
5k views

How do I open an already opened file with a .net StreamReader?

I have some .csv files which I'm using as part of a test bench. I can open them and read them without any problems unless I've already got the file open in Excel in which case I get an IOException: ...
6
votes
4answers
3k views

Reading a line from a streamreader without consuming?

Is there a way to read ahead one line to test if the next line contains specific tag data? I'm dealing with a format that has a start tag but no end tag. I would like to read a line add it to a ...
6
votes
1answer
6k views

Difference between StreamReader.Read and StreamReader.ReadBlock

The documentation simply says ReadBlock is "a blocking version of Read" but what does that mean? Someone else has asked the question before but, huh? ...
5
votes
3answers
1k views

StreamReader and buffer in C#

I've a question about buffer usage with StreamReader. Here: http://msdn.microsoft.com/en-us/library/system.io.streamreader.aspx you can see: "When reading from a Stream, it is more efficient to ...
5
votes
1answer
409 views

Reverse Streamreader

I have an application that I've been tasked with cleaning up after. The application itself is relatively simple - it runs a SQL query, consumes a web service, and spews the results to a log file. My ...
5
votes
5answers
2k views

Will a using clause close this stream?

I've apparently worked myself into a bad coding habit. Here is an example of the code I've been writing: using(StreamReader sr = new StreamReader(File.Open("somefile.txt", FileMode.Open))) { ...
4
votes
8answers
207 views

C# add line numbers to a text file

I am trying to read a text file in C# and add line numbers to the lines. This my input file: This is line one this is line two this is line three And this should be the output: 1 ...
4
votes
3answers
171 views

Cannot read txt files from C:\Testing\Docs using C#.Net

I have a C# .Net 4.0 Project which needs to read text files and parse them - very simple. The files are located in C:\Testing\Docs When I try to open a text file in the above directory I get the ...
4
votes
2answers
172 views

Execute Process Chain

public void ExecuteProcessChain(string[] asProcesses, string sInRedirect, string sOutRedirect) { Process p1 = new Process(); p1.StartInfo.UseShellExecute = false; ...
4
votes
5answers
2k views

StreamReader complains that file does not exist, but it does

I have an application that is localized for use across Europe. I have a menu option that loads a file from disk. This operation works fine on my dev machine but does not work on the virtual machine ...
4
votes
7answers
2k views

Will closing a FileStream close the StreamReader?

If I use a FileStream to create a StreamReader, will the StreamReader close when I close the FileStream or will I need to close the StreamReader too? public void ReadFile() { var file = new ...
3
votes
1answer
53 views

Saving to a textfile with forms

So I have a GUI using MSVS 2010 and I am creating many forms. My main form opens up my text file "database" and concats the proper data to a different opened file. If the opened file has data that ...
3
votes
2answers
138 views

Consume a StreamReader stream .NET from a web request as it streams?

I experimenting with the Twitter streaming api, an am trying to open a stream for a user to consume events as they happen. I using a standard set of classes for making REST api calls to twitter. When ...
3
votes
1answer
132 views

Am I really forced to ReadToEnd() a StreamReader reading an Ionic.Zlib.GZipStream?

I am using the following code to uncompress a GZipStream (using DotNetZip library), where fs is a filestream pointing to a gz file (with FileMode.Open, FileAccess.Read, FileShare.ReadWrite): using ...
3
votes
1answer
130 views

C# Increasing Efficiency of a Program?

I am working on a C# program that reads in very large files and is checking them for different attributes and fields. I had been testing with files with under 1 million lines and it was preforming as ...
3
votes
3answers
140 views

C# Roll back Streamreader 1 character

For a C# project i am using streamreader, i need to go back 1 character (basicly like undoing) and i need it to change so when you get the next character it is the same one as when you rolled back ...
3
votes
1answer
63 views

Writing to a file while reading it with streams?

I wrong a function to read a configuration file, but if the command line arguement "-ip x.x.x.x" is specified, I want to overwrite the IP setting in the configuration file. I am using the following ...
3
votes
6answers
1k views

StreamReader and reading an XML file

I get a response from a web-server using StreamReader... now I want to parse this response (it's an XML document file) to get its values, but every time I try to do it I get a error: Root element is ...
3
votes
9answers
366 views

C# “using” blocks

I've got something like the code below...someone here mentioned that the WebClient, Stream, and StreamReader objects could all benefit from using blocks. Two easy questions: 1: How would this ...
3
votes
1answer
451 views

C# MySQL database restore

I am trying to restore MySQL database data from a dump file, using C# codes. I am suppose to execute the following command: mysql --verbose --user=root --password=qwerty123456 test < ...
3
votes
5answers
511 views

Why disposing StreamReader makes a stream unreadable?

I need to read a stream two times, from start to end. But the following code throws an ObjectDisposedException: Cannot access a closed file exception. string fileToReadPath = @"<path here>"; ...
3
votes
5answers
1k views

simultaneous read-write a file in C#

I have a file containing data that I'd like to monitor changes to, as well as add changes of my own. Think like "Tail -f foo.txt". Based on this thread, it looks like I should just create a ...
3
votes
3answers
877 views

Read from StreamReader in batches (C#)

I have been running into OutOfMemory Exceptions while trying to load an 800MB text file into a DataTable via StreamReader. I was wondering if there a way to load the DataTable from the memory stream ...
3
votes
4answers
975 views

C# StreamWriter and StreamReader memory managment problem, why won't memory used deallocate?

So I'm using a StreamReader that uses a MemoryStream to write to a StreamWriter and inside of this application but the memory usage increases by 300mb (From one of the larger inputs) and does not ...
3
votes
1answer
144 views

How to string multiple TextReaders together?

I have 3 TextReaders -- a combination of StreamReaders and StringReaders. Conceptually, the concatenation of them is a single text document. I want to call a method (not under my control) that takes ...
3
votes
2answers
248 views

StreamReader returning another char

I'm trying to read the content of a file with a StreamReader, that receives a FileStream. The file has some spaces inside (char 32) and the StreamReader is reading them as 0 (char 48). The screenshot ...
3
votes
1answer
561 views

ASP.Net MVC: Can an msi file be returned via a FileContentResult without breaking the install package?

I'm using this code to return a FileContentResult with an msi file for the user to download in my ASP.Net MVC controller: using (StreamReader reader = new StreamReader(@"c:\WixTest.msi")) { ...
3
votes
1answer
463 views

Reading EML files from Windows SMTP service. Any reason not to use StreamReader?

I'm going to be reading and parsing the EML files dropped by the Microsoft SMTP service. I am a newbie to using the various stream classes. The implementation I have seen that parses these files ...
3
votes
1answer
763 views

C# Convert byte array to string, using preamble or default encoding

Im trying to convert a byte array to a string. The byte array includes a preamble (if the used encoder had one of those), and you must specify the default encoding if no preamble is stored in the byte ...
3
votes
3answers
642 views

Java make a copy of a reader

I have a BufferedReader looping through a file. When I hit a specific case, I would like to continue looping using a different instance of the reader but starting at this point. Any ideas for a ...
3
votes
5answers
2k views

How to know position(linenumber) of a streamreader in a textfile?

an example (that might not be real life, but to make my point) : public void StreamInfo(StreamReader p) { string info = string.Format( "The supplied streamreaer read : {0}\n at line {1}", ...
3
votes
5answers
239 views

Lengthy lines of code vs readability

This is perfectly fine C# code and works fine provided correct URL. But the everything is just done at one line by reducing the readability of the code. Here is the code : return new ...
2
votes
3answers
54 views

Moving the file cursor up lines?

I've googled this like crazy, and I can't seem to find any reference at all to this particular type of problem. I have a StreamReader object with a file, and I want to read over a certain number of ...
2
votes
2answers
104 views

StreamReader.ReadLine not working over TCP when using \r as line terminator

When I use only \r as a line terminator, the StreamReader.ReadLine() method doesn't work. It works if I use Environment.NewLine, \r\n or \ra ("a" being any character). Is this a bug? The same problem ...
2
votes
2answers
136 views

converting \u0040 to @ in C#

The Facebook graph API's return to me the user's email address as foo\u0040bar.com. in a JSON object. I need to convert it to foo@bar.com. There must be a built in method in .NET that changes ...
2
votes
1answer
80 views

C# - FileStream: both lock a file and at the same time be able to read it without truncating it and write it with truncating it

I suppose my title isn't that clear. I'll try to explain: I can write and read a file using a FileStream FileStream fs = new FileStream("C:\\Users\\Public\\text.txt", FileMode.OpenOrCreate, ...
2
votes
3answers
75 views

What is the encoding of the string get from StreamReader.ReadLine()

First, let's see the code: //The encoding of utf8.txt is UTF-8 StreamReader reader = new StreamReader(@"C:\\utf8.txt", Encoding.UTF8, true); while (reader.Peek() > 0) { //What is the encoding ...
2
votes
4answers
146 views

C# CSV dynamic split

I have multiple 1.5 GB CSV Files which contain billing information on multiple accounts for clients from a service provider. I am trying to split the large CSV file into smaller chunks for processing ...
2
votes
3answers
134 views

Why StreamReader.EndOfStream property change the BaseStream.Position value

I wrote this small program which reads every 5th character from Random.txt In random.txt I have one line of text: ABCDEFGHIJKLMNOPRST. I got the expected result: Position of A is 0 Position of F is ...
2
votes
4answers
145 views

Should I call Close() or Dispose() for stream objects?

Classes such as Stream, StreamReader, StreamWriter etc implements IDispose interface. That means, we can call Dispose() method on objects of these classes. They've also defined a public method called ...
2
votes
2answers
186 views

Problem with file IO streamreader + streamwriter C#

Hi guys I am kinda new to C#. I am trying to do some file io stuff. When I read and write it is only doing it on one line. Is there a way to advance the streamreader/streamwriter? It is for a school ...

1 2 3 4 5 6