In .net is a class used to read binary values. In general, it is a class or a program to read and manipulate binary data.

learn more… | top users | synonyms

0
votes
2answers
83 views

C# Binary reading incomplete strings [closed]

i was hoping to get some help on this problem, so as you can see in the picture bellow, i can't seem to read the whole word up to 0x00: what i am trying ot do, is to just read the file strings ...
0
votes
1answer
68 views

Delphi Prism: Reading a string from binary file returns with wierd characters

I am writing a string into a file and reading it back out using binarywriter and binaryreader. When the string is read back out, it looks all funny and very long. I don't know why it is doing that. ...
0
votes
0answers
166 views

Unable to read Beyond the end of Stream

I found a link: http://code.cheesydesign.com/?p=572 about reading PE Files. I am using this code but unfortunately, I get an error on ntHeadersSignature (on reader.ReadUint32). It says that it's ...
0
votes
0answers
37 views

Calculate MD5 hash from bufferd stream (BinaryReader and using buffer) [duplicate]

I need to calculate a MD5 hash from a bufferd stream (BinaryReader). I can calculate the MD5 hash for the buffer (bytes), but how to calculate the MD5 hash for the complete stream ? Can't load whole ...
0
votes
1answer
152 views

BinaryReader reading different length of data depending on BufferSize

The issue is as follows, I am using an HttpWebRequest to request some online data from dmo.gov.uk. The response I am reading using a BinaryReader and writing to a MemoryStream. I have packaged the ...
4
votes
2answers
175 views

Efficient way to read big endian data in C#

I use the following code to read BigEndian information using BinaryReader but I'm not sure if it is the efficient way of doing it. Is there any better solution? Here is my code: // some code to ...
0
votes
1answer
83 views

BinaryReader.ReadByte() doesn't TimedOut

I have an internet stream and creating reader from that var reader = new BinaryReader(stream); and after that reading bytes for searching "sync word" if (reader.ReadByte() != magic[i++]) But ...
2
votes
2answers
191 views

Fast reading of an array of structs from a binary file

Is it possible to read an array of structs from binary file in one call? For example, I have a file containing thousands of vertices: struct Vector3 { float x, y, z; } I need C# port for the C++ ...
0
votes
1answer
180 views

Optimize this method of converting binary to ASCII in C#

I need to do a considerable amount of I/O, maybe 1 TB per day. I optimized almost everything and it comes down to this class which deals with converting a binary file to ASCII. I'm thinking it can be ...
1
vote
3answers
144 views

I'd like to use ifstream and ofstream in C++ to mimic C#'s BinaryReader / BinaryWriter functionality

I'm looking for a way to write floats/ints/strings to a file and read them as floats/ints/strings. (basically read/write as ios::binary).
3
votes
1answer
215 views

How to use BinaryReader Read method to read dynamic data?

I'm trying to use a BinaryReader Read method in a generic way. Only at run time I know the type of data being read. public static T ReadData<T>(string fileName) { var ...
2
votes
1answer
167 views

What is the efficient way to search for a hex-value in a big binary file in C#

Much like the same functionality in HxD editor, I am implementing a program that searches for a specific hex-value (say 32 bits) in a big binary files (> 1 GB). Memory is limited and it seems that ...
2
votes
0answers
155 views

Visual Basic.NET "The output char buffer is too small to contain the decoded characters, encoding 'Unicode (UTF-8)' fallback 'System

I am trying to read a binary file in which i have been appending data using a BinaryWriter object. I keep getting this error: "The output char buffer is too small to contain the decoded ...
1
vote
1answer
283 views

Reading/Writing unsigned bytes with std::stringstream

I am trying to write unsigned chars to a stringstream. The information I need to write has 0x00 involved. I need to be writing the values 0 thru 40 as actual numeric values, and not as ASCII ...
1
vote
1answer
139 views

Reading a struct containing character array

I have the following struct: unsafe struct Locomotive { public fixed char locotype[6]; public int roadno,HP; } I have successfully written this to a binary file. Here's the code: ...
1
vote
0answers
72 views

Retaining a negative zero through a DataGrid

I'm using BinaryReader to read some floats off of a file and put them in a DataGrid. I saved the file back using the data that I got in the DataGrid without making any changes, and when doing a binary ...
1
vote
1answer
209 views

serializing an object with a byte array of a file as a field

I am sending a file over the network using a client-server program. After reading the bytes of the file (with File.ReadAllBytes()), I set the byte array as a field of an object. Then serialize and ...
-2
votes
2answers
628 views

Receive byte array from server to client? BinaryReader / BinaryWriter error?

Hi i'm a newbie in c# and doing server and client for sharing text file via tcp/ip socket connection. I used the BinaryReader / BinaryWriter to upload from client to server but stucking from server to ...
2
votes
3answers
2k views

Downloading pdf file using WebRequests

I'm trying to download a number of pdf files automagically given a list of urls. Here's the code I have: HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); request.Method = "GET"; ...
1
vote
1answer
112 views

C# read UTF8 UInt64

I am writing currently a Flac-Decoder and so I have to read 2 UTF8 values encoded in the flac-header. This is in the documentation: if(variable blocksize) <8-56>:"UTF-8" coded sample number ...
9
votes
6answers
24k views

How convert byte array to string

I created byte array with two strings. How convert byte array to strings. var binWriter = new BinaryWriter(new MemoryStream()); binWriter.Write("value1"); binWriter.Write("value2"); binWriter.Seek(0, ...
1
vote
1answer
481 views

How to append data using just BinaryWriter at the end of the file?

Maybe similar questions were asked in Stackoverflow, but I seem not to be able to find a solution to my problem. I simply want to open a writable binary stream and be able to append data to the file ...
3
votes
3answers
813 views

What does BinaryReader do if the bytes I am reading aren't present yet?

I am using a BinaryReader on top of a NetworkStream to read data off of a network. This has worked really well for me, but I want to understand what's going on behind the scenes, so I took a look at ...
0
votes
1answer
144 views

How do I read bit flags mixed with data?

I've never wandered into reading binary data before. I'm trying to learn now, and make a simple application to read the header data from a FLAC file and display the information in human readable ...
0
votes
3answers
174 views

BinaryReader or Writer.Close() is not closing properly C#

I have a form application that performs a simulation and constantly reads/writes a binary file. Everything works fine if you let it run through. However, if the form is closed/ the simulation is ...
0
votes
2answers
370 views

Reading UInt16 numbers only binary file

If I were reading byte numbers I would do: using (FileStream stream = new FileStream(filename, FileMode.Open, FileAccess.Read)) { int size = (int) stream.Length; BinaryReader br = new ...
5
votes
1answer
7k views

StreamReader vs BinaryReader?

Both StreamReader and BinaryReader can be used to get data from binary file ( for example ) BinaryReader : using (FileStream fs = File.Open(@"c:\1.bin",FileMode.Open)) { ...
0
votes
2answers
148 views

BinaryReader and BinaryWriter file handle in Delphi Prism

I want to be able to read and write into a file in the same instance or through same file handle. What I mean is this. Say you open a file as follows. BinaryReader jfile := new ...
0
votes
3answers
645 views

Big-Endian Int64 (C#)

Im using a System.IO.BinaryReader to read a data from a serialized file. The file is big endian. So what I did to read the Int64 (long) from the stream was read 8 bytes from it. What I need to do is ...
1
vote
1answer
192 views

Binary reader skips instructions

I'm trying to read from a binary file with BinaryReader. This is how I call my reading method : foreach (Movie film in TreeBuilder.myMovies) { if ...
1
vote
3answers
629 views

BinaryReader - Reading a Single “ BIT ”?

Case : Again trying to capture packets through my NIC, I have developed 2 Extensions to use in capturing variable number of bits public static string ReadBits ( this BinaryReader Key , int ...
1
vote
3answers
158 views

Weird behavior with a BinaryReader

I have a socket-based application that exposes received data with a BinaryReader object on the client side. I've been trying to debug an issue where the data contained in the reader is not clean... ...
1
vote
1answer
781 views

Unable to read an open file with binary reader

I have this function to read the SQL Server errorlog but the problem is that I'm not able to read the errorlog that the server is using at the time. I have been google-ing and it seems that the ...
2
votes
1answer
787 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 ...
5
votes
3answers
3k 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 ...
14
votes
2answers
4k 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 ...
1
vote
0answers
157 views

BinaryReader ReadSingle()

In my WP7 app, I have used BinaryReader class's ReadSingle() method to read a floating point value from a stream. It works fine and gives the correct value when I run the code on Emulator. But When I ...
0
votes
2answers
215 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 ...
-1
votes
2answers
186 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), ...
0
votes
1answer
636 views

Reading Binary file on Windows phone

I want to read a binary file using BinaryReader, but I keep getting an exception: using (var stream = File.Open("file.bin", FileMode.Open, FileAccess.Read)) { using (BinaryReader ...
0
votes
2answers
706 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 ...
3
votes
2answers
405 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 ...
2
votes
2answers
1k 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
510 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 ...
0
votes
1answer
564 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 ...
1
vote
2answers
217 views

Delphi Prism: Does BinaryWriter “Write method” work the same as Writeln method from Delphi?

I am working with Delphi Prism and creating and writing into binary file using BinaryWriter as follows. method TUnit.Write(bw:BinaryWriter); var i:Integer; begin bw.write(ord(uType)); ...
1
vote
6answers
1k 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
233 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 ...
7
votes
2answers
780 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 ...
2
votes
1answer
1k 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 2