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 FileStream fs;
static BinaryWriter w;
fs = new FileStream(filename, FileMode.Create);
w = new BinaryWriter(fs);

w.Write("test");

w.Close();
fs.Close();

Unfortunately, this ends up prepending a box to the front of the file and it looks like so:

TEST, with a fun box on the front. Why is this, and how can I avoid it?

Edit: It does not seem to be displaying the box here, but it's the unicode character that looks like gibberish.

link|improve this question

2  
Why do you care? The binary writer writes a not-human-readable binary format, so it shouldn't be surprising that it is full of weird not-human-readable binary data. If you want to write a human-readable text file, don't use the binary file writer, use the human-readable text file writer. – Eric Lippert Sep 28 '09 at 18:17
@Eric, I will be pushing the contents of many files into this file to be read later on. However, I wish to check that the file begins with "TEST", otherwise I will not read the file. – Chris Sep 28 '09 at 18:19
4  
To actually answer your question: the binary writer writes out a binary string by prepending it with the length of the string. That way the binary reader knows how much string data there is coming next. – Eric Lippert Sep 28 '09 at 18:20
1  
If what you want to do is write the string as an array of characters, not as a string, then try doing w.Write("test".ToCharArray()); to force the writer to write out the characters as an array rather than as a length-prefixed string. – Eric Lippert Sep 28 '09 at 18:23
3  
There are plenty of ways around it. You can write out a char array, you can write out a byte array, you can write out four individual bytes, you can do whatever you want. You control the format of your binary file; if you don't like the default string handling, go ahead and implement your own. – Eric Lippert Sep 28 '09 at 18:25
show 2 more comments
feedback

9 Answers

up vote 12 down vote accepted

They are not byte-order marks but a length-prefix, according to MSDN:

public virtual void Write(string value);

Writes a length-prefixed string to [the] stream

And you will need that length-prefix if you ever want to read the string back from that point. See BinaryReader.ReadString().

Additional

Since it seems you actually want a File-Header checker

  1. Is it a problem? You read the length-prefix back so as a type-check on the File it works OK

  2. You can convert the string to a byte[] array, probably using Encoding.ASCII. But hen you have to either use a fixed (implied) length or... prefix it yourself. After reading the byte[] you can convert it to a string again.

  3. If you had a lot of text to write you could even attach a TextWriter to the same stream. But be careful, the Writers want to close their streams. I wouldn't advice this in general, but it is good to know. Here too you will have to mark a Point where the other reader can take over (fixed header works OK).

link|improve this answer
feedback

That's because a BinaryWriter is writing the binary representation of the string, including the length of the string. If you were to write straight data (e.g. byte[], etc.) it won't include that length.

byte[] text = System.Text.Encoding.Unicode.GetBytes("test");
FileStream fs = new FileStream("C:\\test.txt", FileMode.Create);
BinaryWriter writer = new BinaryWriter(fs);
writer.Write(text);
writer.Close();

You'll notice that it doesn't include the length. If you're going to be writing textual data using the binary writer, you'll need to convert it first.

link|improve this answer
feedback

As Henk pointed out in this answer, this is the length of the string (as a 32-bit int).

If you don't want this, you can either write "TEST" manually by writing the ASCII characters for each letter as bytes, or you could use:

System.Text.Encoding.UTF8.GetBytes("TEST")

And write the resulting array (which will NOT contain a length int)

link|improve this answer
feedback

why are you using a binarywriter to write text? There is a separate textwriter for this

link|improve this answer
it won't be only text. i will be writing the entire data contents of files into this stream eventually. – Chris Sep 28 '09 at 18:10
feedback

The byte at the start is the length of the string, it's written out as a variable-length integer.

If the string is 127 characters or less, the length will be stored as one byte. When the string hits 128 characters, the length is written out as 2, and it will move to 3 and 4 at some lengths as well.

The problem here is that you're using BinaryWriter, which writes out data that BinaryReader can read back in later. If you wish to write out in a custom format of your own, you must either drop writing strings like that, or drop using BinaryWriter altogether.

link|improve this answer
feedback

Sounds like byte order marks.

http://en.wikipedia.org/wiki/Byte-order%5Fmark

Perhaps you want to write the string as UTF-8.

link|improve this answer
See Henk's response - it's a length indicator, not byte order. – Jon B Sep 28 '09 at 18:19
So I gather. Based on the initial information, the BOM diagnosis was quite reasonable, though. – Steven Sudit Sep 30 '09 at 15:09
feedback

That's a byte order mark, most likely. It's because the stream's encoding is set to Unicode.

link|improve this answer
feedback

Remember that Java strings are internally encoded in UTF-16.

So, "test" is actually made of the bytes 0xff, 0xfe (together the byte order mark), 0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00.

You probably want to work with bytes instead of streams of characters.

link|improve this answer
1  
Remember that a C# tag means: It's not Java. – Henk Holterman Sep 28 '09 at 21:52
feedback

You can save it as a UTF8 encoded byte array like this:

...

BinaryWriter w = new BinaryWriter(fs);

w.Write(UTF8Encoding.Default.GetBytes("test"));

...
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.