StreamReader is designed for character input in a particular encoding, whereas the Stream class is designed for byte input and output. StreamReader can be used for reading lines of information from a standard text file.

learn more… | top users | synonyms

0
votes
2answers
27 views

Remove listbox items when tab is changed

I created a form with three tabs. The button below is under one tab and when clicked fills the ListBox readBox with items from a text file. What I cannot figure out how to do is remove the items from ...
0
votes
0answers
5 views

WebResponse Encoding

I am writing a C# application to download html page, and present it to the user in a form. My problem is that I've encoding issues when I am get the html content. After many search, I perform this ...
0
votes
0answers
6 views

Decrypting RijndaelManaged System.Exception._COMPlusExceptionCode

EDIT After posting i realized it might help if i actually decrypted the byte[] :( not exactly sure what i did wrong. I followed the example at Encrypt/Decrypt string in .NET Encryption works fine, ...
0
votes
1answer
22 views

Save file if error reading with Stream Reader

I am trying to parse a uploaded txt file. I need to save the file if there is an error parsing it. The problem is that the parser is using a Stream Reader and if an error occurs it just saves the ...
0
votes
1answer
50 views

How to read byte[] with current encoding using streamreader

I would like to read byte[] using C# with the current encoding of the file. As written in MSDN the default encoding will be UTF-8 when the constructor has no encoding: var reader = new ...
0
votes
4answers
41 views

Best way to save low amount of configuration

I have to save the configuration of my device, and a friend told me that as it is just 2(two) fields, it would be better save/read it on a .txt file instead create a table. Is that true ? Will it be ...
0
votes
2answers
37 views

Detect Form Feed Character

I am using C# to read in a text file that has form feed characters in it. I need to do something when I hit a line that starts with a form feed character. How can I check for this? Example: ...
-2
votes
1answer
41 views

Parsing csv file with StreamReader and how can i pass it more than one search parameter

I have a program as seen below that is parsing a .csv file. IT opens up StreamReader and searches for keywords. I am trying to make it so that the users change the search parameters in a txt file not ...
0
votes
3answers
32 views

Error Accessing namespace Library c#

This is more of conceptual question, since I am new to C# trying to get a simplified understanding. My is trying to read lines from text file, which works fine but I am trying to implement following ...
0
votes
3answers
45 views

StreamReader Multiple lines

I am trying to figure out how to read multiple lines whith StreamReader. I have a text file with a list of commands inside it that I need to read from. My code works, however it will only read the ...
0
votes
1answer
50 views

StreamReader.Read text out of order

I'm trying to send the Base64 string of a screenshot to the server via NetworkStream and it appears I'm receiving the full string, problem is it's scrambled... I assume this has something to do with ...
1
vote
1answer
41 views

C# Listview text importing function does nothing

i am trying to import .txt file contents to my listview, the text file is already saved as multiple lines in this structure: "Line ID"^"String" i use this code to import the data: ...
0
votes
0answers
26 views

StreamReader.ReadLine() returning Nothing

I am writing a "self training" TCP Client, everything is working until now,i am wondering what it means if i receive a Nothing string ? Dim sr As IO.StreamReader = New ...
0
votes
1answer
32 views

Why is my network read/write speed so slow on my app?

Ok, so i have made a server\client app for file transportation using a single-thread in a console app. Whenever i run both the client and the server on the same network it runs perfectly, but whenever ...
0
votes
1answer
54 views

How to convert stream reader response to a class object?

I am currently working on some functionality that makes an httppost then get a response. Here's the code I'm currently working with: public string SubmitRequest(string postUrl, string contentType, ...
0
votes
1answer
40 views

Whats the correct way to use streamwriter & steamreader?

I'm into uncharted territory - I have to create an httppost for the first time (xml). I've looked at plenty of examples but to be frank, its kinda confusing for a noob. The function I'm currently ...
0
votes
3answers
52 views

System.OutOfMemoryException: FTP Upload

I am attempting to load files up to an FTP server. Here is my code: // Create the request. FtpWebRequest request = ...
1
vote
1answer
55 views

Seek Method fails to read the text file C#

Using Seek Method to read a specific part of a text but it fails. I have two classes "allmethods.cs" and "caller.cs" There are two methods in "allmethods.cs" which are "WritingMethod" and ...
0
votes
2answers
83 views

Streamreader doesn't read data in text file C#

I have two classes "allmethods.cs" and "caller.cs" I have two methods in the "allmethods.cs" class which are "WritingMethod" and "ReadingMethod" The program should write and read from a text file. ...
0
votes
4answers
111 views

How to find the no. of bytes of a text file without reading it?

I have c# code reading a text file and printing it out which looks like this: StreamReader sr = new StreamReader(File.OpenRead(ofd.FileName)); byte[] buffer = new byte[100]; //is there a way to ...
3
votes
4answers
64 views

StreamReader NullReferenceException

I'm making a function that will get the number of lines from a StreamReader excluding comments (lines which starts with '//') and new lines. This is my code: private int GetPatchCount(StreamReader ...
1
vote
1answer
41 views

Parse txt file using a list of objects

I am trying to parse a .txt file that has multiple loans in it. My logic is: I create a Loan class with the properties I need, I create a list of loan objects. I create a new loan object and add it ...
0
votes
3answers
44 views

(C#) Reading a part of a line

I have a text file and within it, it looks like: xxxx:value All I want to read is the value, I've tried to manipulate: using System; using System.IO; class Test { public static void Main() ...
0
votes
1answer
78 views

Find regex in file with StreamReader and overwrite it with StreamWriter

I am reading text file with StreamReader and doing Regex.Match to find specific info, now when I found it I want to replace it with Regex.Replace and I want to write this replacement back to the file. ...
0
votes
3answers
93 views

A faster way to read lines in text files quickly

Once again, I'm working on yet another project. This one is pretty simple and straightforward, but is looking at huge text files (upwards to half a million lines) from a Proxy Server log. The problem ...
1
vote
3answers
103 views

Out of memory reading after reading 682 txt files

I want to read a file with this code but after 682 times i get this error: Exception of type 'System.OutOfMemoryException' was thrown. System.IO.StreamReader file = new ...
2
votes
2answers
63 views

FileNotFound Exception While Opening File

I have a project that reads several text files into a List via StreamReader, I have the files added to my solution under Resources, when I try to reference the file using StreamReader, I get a ...
0
votes
1answer
80 views

Importing files with streamReader.ReadBlock (buffer)

Needed to import a large number of text files and find some research material, particularly for my problem, I decided to post the solution here. I believe it will help someone else. My files are ...
0
votes
1answer
34 views

loading/streaming a file into a buffer/buffers

I have been trying for a couple of days now to load a file in chunks to allow the user to use very large (GB) files and still keep the speed of the program. Currently i have the following code: using ...
0
votes
2answers
88 views

Directly read a byte document with FileStream (without path)

I have a byte document in a variable, and I want to put it into a FileStream for using it into a StreamReader. Can I do this? I saw that FileStream uses a path, but is there a way to read my byte ...
0
votes
2answers
42 views

Reference not set error at empty line

I get this error when I read from a file and the file has an empty line, I want the loop to stop at the empty line but I get this error, how should I do this? string[] delim = new string[] { "," }; ...
0
votes
2answers
52 views

Streamreader giving me what seems random data nd no idea why

I am building a program to read in football leagues and fixtures which are both in the same text file, the legue information is the top 32 lines and the fixtures is the rest of the document. Anyway ...
4
votes
1answer
238 views

Reading very large text files, should I be incorporating async?

I have been challenged with producing a method that will read in very large text files into a program these files can range from 2gb to 100gb. The idea so far has been to read say a couple of 1000 ...
0
votes
2answers
186 views

C# Getting a Form method into a User Control C#

I am preparing for my 1st year test and one of the questions I know about is "Create a user control with a textBox and a button, and on form create a listBox" Okay. Now what has to happen is the ...
0
votes
1answer
62 views

Streamreader - reading data from IP

I am interfacing an instrument that sends data via IP. I want to put my reading code in a timer to read the data in the background while the user interacts with the program. My problem is that it ...
0
votes
1answer
82 views

Copying a text file line by line vb.net half the size?

I'm trying to modify specific lines in a 6 gig text file (SQL script). So I read it in with IO.StreamReader.ReadLine and write to a new file with IO.StreamWriter.WriteLine. If the line matches a ...
1
vote
2answers
77 views

How to obtain data from a website and process it in C#

I would like to make a console application that can query a website for data, process it, and then display it. ie- Access http://data.mtgox.com/ and then display the rate for currency X to currency Y. ...
0
votes
1answer
115 views

How to read a Word Doc in C# so that it displays as if it was opened in Notepad

I am trying to read a Word Doc in C#, and then display the result in a textbox. But I don't want to read just the text, but instead read the whole file, special characters included. I need it to ...
0
votes
1answer
36 views

HtmlAgilityPack returning random characters

I have the following code that is using HtmlAgilityPack to pull back html code for a number of websites. All seems to be working well, apart from asos.com. When running a url through, it returns ...
0
votes
0answers
72 views

Replacing Text in PDF with VB.Net Causes Corrupt Output File

I am trying to write an application that will read through approximately 30,000+ PDF files and attempt to mask social security numbers and move them to an output directory. The process runs correctly, ...
0
votes
0answers
51 views

Hashing a part of text file in .Net

It is easy to hash a binary file, whether fully or partially, either by manually feeding the hash core with data or by using a transparent CryptoStream. It is as well easy to hash a text file at a ...
0
votes
1answer
213 views

listing server folders and sub folders using C# FtpWebRequest

I am trying to get full list of files, directories and sub-directories on tree view using Stream reader. The problem is it took too long and throws Operation Time Out Exception and shows only one ...
-2
votes
4answers
42 views

Differentiate between tab-separated, space-separated and comma-separated streams

I am using the following code to read a tab-delimited stream. using (StreamReader readFile = new StreamReader(path)) { string line; string[] row; while ((line = readFile.ReadLine()) != ...
0
votes
1answer
175 views

Loading data from a text file into a DataGridView and saving

1) How can I get a specific string from a text file to call back to datagrid I would like the format to be identical to this: ronald fernando banker's village philippines 8460999 jeniffer corpuz ...
0
votes
3answers
107 views

C# - Looping through pairs and matching

So I'm stuck on a program where I have a series of pairs that may or may not be able to connect together to form a complete path through the pairs. I need to be able to check if the second item in a ...
0
votes
2answers
93 views

Stream Reader and Writer Conflict

I am making a class that is to help with saving some strings to a local text file (I want to append them to that file and not overwrite so that it is a log file). When I write with the streamwriter to ...
0
votes
4answers
87 views

Reading an xml file 50 lines at a time

Currently trying to make a method to read in XML files at the moment 50 lines at a time this will be increased to allow larger files to be used in the program. At the moment i am trying to accomplish ...
0
votes
2answers
186 views

Read text file from C# Resources

I need to read a file from my resources and add it to a list. my code: private void Form1_Load(object sender, EventArgs e) { using (StreamReader r = new ...
0
votes
1answer
53 views

how to read a file in batches/parts/1000 lines at a time

I am currently trying to make a method that can handle reading in large XML files. All i need is a method that would loading in say 1000 lines at a time or in small batches. I have been looking at ...
0
votes
2answers
37 views

What process is Streamreader using?

I made a simple program with StreamReader sr = new StreamReader(File.OpenRead(dlg.FileName)); txtBox1.Text = sr.ReadToEnd(); and forgot to put sr.Dispose(); and now when I try ...

1 2 3 4 5 12