Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
1k views

Why a BinaryWriter closes the outer Stream on disposal, and how to prevent that? (.NET C#)

I have one method that receives a Stream to write on it using a BinaryWriter. But when I dispose this BinaryWriter it also closes the stream. Can I leave it undisposed so I can leave my stream open?
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 ...
2
votes
2answers
141 views

C# and .NET: How to serialize a structure into a byte[] array, using BinaryWriter?

How to serialize a rather complex structure into a byte[] array, using BinaryWriter? Update: For this to work, every structure (and sub-structure?) must be decorated with the [Serializable] ...
2
votes
3answers
227 views

Bit-Based BinaryWriter in C#

I'm working on a bit-based B/W/Greyscale Pre-Compiled font format, and was having issues with either reading or writing the format, (I've not been able to determine where the issue was. (I do have a ...
2
votes
3answers
192 views

How do I write a list using BinaryWriter?

I want to use a generic WriteList(List value) function to write a List using the BinaryWriter. Here is the code I am using: public void WriteList<T>(List<T> value) { for (int i = 0; i ...
2
votes
9answers
1k views

Why does BinaryWriter prepend gibberish to the start of a stream? How do you avoid it?

I'm debugging some issues with writing pieces of an object to a file and I've gotten down to the base case of just opening the file and writing "TEST" in it. I'm doing this by something like: static ...
1
vote
2answers
161 views

How to read and write “SET OF” type into a file using BinaryWriter?

This is for Delphi Prism. Say, I have the following enum SET type that I would like to save into a binary file. Fruit = (Apple, Banana, Mango, Cherry, Grapes, BlueBerry); Fruits = set of Fruit; ...
1
vote
2answers
108 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
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
125 views

Modify data via StreamWriter or file writes?

I need to create binary data file. It cannot be created in one pass, I need to serialize some data, then go back and write offsets in the header. File will comfortably fit in memory (a few megabytes). ...
1
vote
1answer
159 views

Using BinaryWriter on an Object

My application is a small C# database, and I'm using BinaryWriter to save the database to a file which is working fine with the basic types such as bool, uint32 etc. Although I've got a variable that ...
1
vote
1answer
63 views

extracting data from .net Data.ToBinary()

I need to read custom-serialized binary data, written using BinaryWriter class. To store a date, the original designers used BinaryWriter.Write( Data.ToBinary() ); This article sort-of mentions how ...
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 ...
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
1answer
114 views

Binary Writer returns byte array of null

I'm working with the MRIM (Mail.Ru Agent) protocol. MRIM is a binary protocol, so in order to make the data binary, I'm using the BinaryWriter class. Here's the code: private byte[] ...
0
votes
1answer
190 views

SharePoint ashx handler file download Problem

I have a ashx handler that gets a file we are using, this in SharePoint, and then it checks what kind of file it is and then it writes using Response.BinaryWrite. It get this file from another server, ...
0
votes
0answers
157 views

Transmit chunked binary data over http to client

I've been breaking my head trying to get this working. I use webrequest to get the data from the remote cloud server. I'm using Response to force the save/cancel dialogue. What I'm stuck on is how to ...
0
votes
2answers
200 views

How to generate a binary file? C#

I need to make a method that generates a binary (4 bytes long), receives List of integers and writes this List one by one in the file. So, I have this: public void ...
0
votes
2answers
412 views

How Write a List<int> to binary file (4 bytes long)?

I need to write a List of ints to a binary file of 4 bytes in length, so, I need to make sure that the binary file is correct, and I do the following: using (FileStream fileStream = new ...
0
votes
1answer
253 views

C# file send, stream problem

I have a server and a client. Server sends an executable and an input.txt to the client. Client should execute it and send output to the server but I have a problem. When I try to run executable it ...
0
votes
2answers
351 views

binarywriter not opening file at end of stream

I have a method which uses a binarywriter to write a record consisting of few uints and a byte array to a file. This method executes about a dozen times a second as part of my program. The code is ...
0
votes
4answers
400 views

Can't write to file using binarywriter

Why does this code not write my string to the file: string file = "Myfile.txt"; MemoryStream ms = new MemoryStream(); void writeToFile(string text) { ...
0
votes
1answer
230 views

Does binarywriter.flush() also flush the underlying filestream object?

I have got a code snippet as follows: Dim fstream = new filestream(some file here) dim bwriter = new binarywriter(fstream) while not end of file read from source file bwriter.write() ...
0
votes
3answers
1k views

classic asp: display jpg using response.BinaryWrite

i'm displaying an image like this: <img src='counter.asp'> counter.asp is doing a hitcounter do determine how often the image was displayed (i'll replace it with a modrewrite url). the ...
0
votes
2answers
183 views

VB.net BinaryWriter Problem

In c# i could do it like: send.Write((ushort)9); "send" is an instance of BinaryWriter, how can i do it in vb.net ? I've tried it like: send.Write((UShort)9) but i get "UShort is a type and cannot ...