3
votes
3answers
83 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
8answers
2k views
.NET C# - Random access in text files - no easy way?
Hi all,
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 …
2
votes
2answers
155 views
Memory efficiency :Passing Html code of aspx page through codebehind
My goal is to generate the aspx code of a page in the form of string.I am calling the below codebehind code through asynchronous request in javascript and i am getting the response back through …
2
votes
3answers
288 views
Long time to load first connection in C# .NET
I'm making a program that connects to a website and downloads XML from it. It then displays the information to the user.
The problem I am having is when I first open the program and start …
2
votes
1answer
1k views
C# HTTPWebResponse + StreamReader Very Slow!!!
Hi all.
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 …
2
votes
5answers
413 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)))
{
…
2
votes
3answers
465 views
Efficient way to encode CDATA elements
Ok, I'm reading data from a stream using a StreamReader. The data inside the stream is not xml, it could be anything.
Based on the input StreamReader I'm writing to an output stream using an …
2
votes
3answers
283 views
How can I determine the content type of a file in .NET?
I'm given a filename and I have to be able to read it from disk and send its contents over a network. I need to be able to determine whether the file is text or binary so I know whether to use a …
2
votes
4answers
1k views
How to limit the number of characters read by StreamReader.ReadLine() in .NET?
I am writing a web server application in C# and using StreamReader class to read from an underlying NetworkStream:
NetworkStream ns = new NetworkStream(clientSocket);
StreamReader sr = new …
1
vote
1answer
48 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 …
1
vote
5answers
124 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 …
1
vote
3answers
177 views
StreamReader, C#, peek
Hello,
I have a StreamReader that once in a while check if it has more to read from a simple text file. It uses peek property. The problem is that when I am using peek the position is changed, …
1
vote
1answer
227 views
Java-Sockets: InputStream.read() vs BufferedReader.read()
Hello
I'm reading from a Socket's InputStream. Because I'm parsing the incoming data on the fly, I'm required to read character by character.
Does BufferedReader.read() the same thing as …
1
vote
5answers
175 views
How do I load text files into database that are greater than the 64 kb buffersize limit?
I'm trying to load text files (.aspx, .cs, html, etc) into a sql server 2008 database. I'm able to load all files that are less than 64 kb so far. I have two questions; How do I get around the 64 kb …
1
vote
2answers
801 views
c# - StreamReader.ReadLine does not work properly!
Simply I have been trying to implement what BufferedStreamReader does in Java. I have a socket stream open and just want to read it in a line oriented fashion -line by line.
I have following …
