Tagged Questions

12
votes
3answers
2k views

Faster (unsafe) BinaryReader in .NET

I came across a situation where I have a pretty big file that I need to read binary data from. Consequently, I realized that the default BinaryReader implementation in .NET is pretty slow. Upon ...
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 ...
6
votes
2answers
170 views

How many bits does BinaryReader.PeekChar() read?

I am working on improving a stream reader class that uses a BinaryReader. It consists of a while loop that uses .PeekChar() to check if more data exists to continue processing. The very first ...
5
votes
3answers
849 views

Issue with C#/.NET BinaryReader.ReadChars()

I've run into what I believe is an issue with the BinaryReader.ReadChars() method. When I wrap a BinaryReader around a raw socket NetworkStream occasionally I get a stream corruption where the stream ...
4
votes
5answers
1k views

c# - reading from binary log file that is updated every 6 seconds with 12k of data

I have a binary log file with streaming data from a sensor (Int16). Every 6 seconds, 6000 samples of type Int16 are added, until the sensor is disconnected. I need to poll this file on regular ...
3
votes
2answers
109 views

How to use BinaryReader and correctly input data into file?

I am working on my homework assignment and I am completely stuck! What I am trying to do is to use already defined input and save it to the file by using saveDataTo() method and read the input by ...
3
votes
1answer
746 views

C# BinaryReader.Read() gets junk to start with

I am trying to figure out what I am doing wrong here. I am attempting to use a Binary Reader to ease getting an initial four bytes from a stream into an Int32 value that tells me how long the rest of ...
3
votes
4answers
189 views

I have written the exact code in vb and C# and it doesnt work the same… logic is identical… i hope

Kind of new to C# and trying to broaden my abilities a bit. I have this code in VB: Private Sub BreakdownFilesToCompare(ByRef file1BReader As BinaryReader, _ ...
3
votes
2answers
1k views

Performance: use a BinaryReader on a MemoryStream to read a byte array, or read directly?

I would like to know whether using a BinaryReader on a MemoryStream created from a byte array (byte[]) would reduce performance significantly. There is binary data I want to read, and I get that data ...
2
votes
3answers
458 views

How do I read a binary file in C#?

I have a file that exists within a text and a binary image, I need to read from 0 to 30 position the text in question, and the position on 31 would be the image in binary format. What are the steps ...
2
votes
3answers
210 views

What does the FillBuffer method of BinaryReader do?

According to the documentation: Fills the internal buffer with the specified number of bytes read from the stream. What does this mean (what's the internal buffer?)?
2
votes
4answers
1k views

EndOfStream for BinaryReader

BinaryReader does not have EndOfStream property. Is it safe to use following code to check if end of stream is reached? reader.BaseStream.Length>reader.BaseStream.Position
2
votes
3answers
784 views

How to properly read 16 byte unsigned integer with BinaryReader

I need to parse a binary stream in .NET to convert a 16 byte unsigned integer. I would like to use the BinaryReader.ReadUIntXX() functions but there isn't a BinaryReader.ReadUInt128() function ...
2
votes
1answer
121 views

What is the best way to read the uploaded files from Request.Files, StreamReader or BinaryReader or BufferedStream?

I have a form where the user can upload multiple files. I am using MVC 2.0 and in my controller I need to call a webservice that is a common import interface requires the files to passed in as byte[]. ...
2
votes
2answers
295 views

EndianBinaryReader - Contious update of the input stream?

I am trying to use the EndianBinaryReader and EndianBinaryWriter that Jon Skeet wrote as part of his misc utils lib. It works great for the two uses I have made of it. The first reading from a ...
2
votes
2answers
5k views

C# BinaryReader “stream does not support seek operations”

I am trying to download files from an ftp server using C# and ftpwebrequest. I can get the bytes using BinaryReader, but when I try to read the stream using br.ReadBytes(int), I get an error that ...
1
vote
2answers
106 views

C# - Binary reader in Big Endian?

I'm trying to improve my understanding of the STFS file format by using a program to read all the different bits of information. Using a website with a reference of which offsets contain what ...
1
vote
2answers
112 views

Improving the performance of a BinaryReader

I am currently in the process of writing a BinaryReader that caches the BaseStream.Position and BaseStream.Length properties. Here is what I have so far: public class FastBinaryReader { ...
1
vote
1answer
108 views

How to convert a BinaryReader to Stream in C#?

I have to read a ".bin" file fully and pass the stream to a function. I tried it with BinaryReader which worked fine for reading values byte by byte, I want to pass the whole file as a string stream ...
1
vote
6answers
163 views

BinaryWriter problem - “code adds some byte between Write() method”

I am try to do some code using BinaryWriter and Then BinaryReader. When I wanna write I use method Write(). But the problem is that between two lines of Write method there appears a new byte which is ...
1
vote
2answers
75 views

BinaryReader.ReadInt32 result unexpected compared to input file, why?

I am puzzled with a particular BinaryReader operation. When viewing a binary file with a hex editor (UltraEdit), the first four bytes are: 52 62 38 11. When iterating over the same file with a ...
1
vote
1answer
184 views

Decompress byte array to string via BinaryReader yields empty string

I am trying to decompress a byte array and get it into a string using a binary reader. When the following code executes, the inStream position changes from 0 to the length of the array, but str is ...
1
vote
3answers
461 views

Reading in a binary file containing an unknown quantity of structures (C#)

Ok, so I currently have a binary file containing an unknown number of structs like this: private struct sTestStruct { public int numberOne; public int numberTwo; public int[] numbers; // ...
1
vote
3answers
592 views

C# Process Binary File, Multi-Thread Processing

I have the following code that processes a binary file. I want to split the processing workload by using threads and assigning each line of the binary file to threads in the ThreadPool. Processing ...
1
vote
2answers
536 views

Excel 2007 file writer in C# results in a corrupt file

I am using a BinaryReader to read an Excel 2007 file from an Exchange mailbox using a OWA, the file is then written to disk using a BinaryWriter. My problem is that the two files don't match when the ...
1
vote
3answers
1k views

Converting from byte[] to string

I have the following code: using (BinaryReader br = new BinaryReader( File.Open(FILE_PATH, FileMode.Open, FileAccess.ReadWrite))) { int pos = 0; int length = (int) ...
0
votes
1answer
64 views

Binary Reader and Writer open at same time?

I'm writing code that deals with a file that uses hashes. I need to read a chunk, then hash it, then write it, then read another chunk, etc. In other words, I need to do a lot of reading and ...
0
votes
2answers
56 views

Translating back an unknown binary file!? is it possible?

I have a program which saves it result files in a binary file. It is also posible within the program to export the result files into XML format. Since the progam itself is awfull at browsing its ...
0
votes
2answers
88 views

How to use BinaryReader in loop so I can display chunks of information in correct format?

I am doing homework and I got to the part where I need to display my data from data file. The problem is that I can display individual data by using BinaryReader() but I can not create a correct loop ...
0
votes
1answer
144 views

C# BinaryReader.ReadString on a network socket

I have a server/client app. Both use BinaryReader/Writer when communicating. When the client and server are exchanging messages rapidly, many in a given second, and I shutdown the server (via a ...
0
votes
1answer
161 views

Reading n-bits from a 32bit chunk

I am trying to read a binary file written by an legacy Fortan application. It writes data into chunks of 32bit. Some of these 32bit chnuk contains mutiple data. e.g 1 : 9 bit will contain position ...
0
votes
1answer
196 views

Empty array with BinaryReader on UploadedFile in c#

Assume the following code: Stream file = files[0].InputStream; var FileLen = files[0].ContentLength; var b = new BinaryReader(file); var bytes = b.ReadBytes(FileLen); If I upload a CSV file that ...
0
votes
3answers
493 views

C# client server application, BinaryReader throws an exception

I've got task to make a server application, which checks if any file on the server (which name must be sent by the client) exists and if it exists to give back a response (message - "This file ...
0
votes
0answers
245 views

BinaryReader.ReadUInt16() is very slow

I have just profiled my application and I am reading a memory stream using ReadUInt16(). It is very costly on time. Is there an alternative - or any way to speed it up? Edit Sorry, I made a mistake, ...
0
votes
2answers
375 views

Reading custom binary data formats in C# .NET

I'm trying to write a simple reader for AutoCAD's DWG files in .NET. I don't actually need to access all data in the file so the complexity that would otherwise be involved in writing a reader/writer ...
0
votes
2answers
191 views

How do I read shorts from a binary file starting at position x, for y values?

I need to read a certain amount of short (int16) data points from a binary file, starting at a specific position. Thanks!
0
votes
1answer
52 views

Strange problem when trying to read data

When I write: var tagType = _reader.ReadByte(); while (tagType != 8) { var skip = ReadNext3Bytes() + 11; _reader.BaseStream.Position += skip; tagType = _reader.ReadByte(); } ...it's ...
0
votes
4answers
1k views

Is there a BinaryReader in C++ to read data written from a BinaryWriter in C#?

I've written several ints, char[]s and the such to a data file with BinaryWriter in C#. Reading the file back in (in C#) with BinaryReader, I can recreate all of the pieces of the file perfectly. ...
0
votes
1answer
110 views

Inconsistency in file before and after upload to Oracle DB

I'm trying to get my website to allow users to upload various files (HttpPostedFile), which are then stored in an Oracle database as BLOBs. Here's what I've got so far: public static bool ...
-1
votes
2answers
52 views

Binary Reader problems

When I run my program the code below comes up with an error: ///////////////////////////// Read in the selected ////////////// BinaryReader br2 = new BinaryReader(File.OpenRead(directoryToSearch2), ...