TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

<< Back to C-SHARP

C# BinaryReader Example (Use ReadInt32)

Use BinaryReader and the ReadInt32 method to read the data from a binary file as integers.
BinaryReader handles binary files. A binary file may have thousands of integers stored in it, or another simple data type. BinaryReader is mainly for convenience. It makes using binary data easier.BinaryWriterFile
File. If you do not have a binary file you are trying to open already, you can create one using the BinaryWriter type. Please visit the BinaryWriter tutorial for instructions about creating a binary file.

Note: Visual Studio can open binary files and you can look at the data. It won't be readable, but it gives you an idea what is happening.

Here: The file here is 48 bytes, because 12 integers of 4 bytes each are in it.

Example. Here we open the same binary file and then read in the bytes. BinaryReader here provides some useful properties that make this easier. When you run the next program, you will see all the ints recovered.

FileStream: We see that BinaryReader receives a FileStream. This is returned by File.Open.

File.OpenFileStream

Variables: It uses position and length variables. These 2 variables store the position in the binary file, and also the total size of the binary file.

ReadInt32: It calls ReadInt32. This method consumes 4 bytes in the binary file and turns it into an int.

Int, uint

Also: The method advances the file read. It increments our position. This line adds 4 bytes to our position.

C# program that uses BinaryReader using System; using System.IO; class Program { static void Main() { R(); } static void R() { // 1. using (BinaryReader b = new BinaryReader( File.Open("file.bin", FileMode.Open))) { // 2. // Position and length variables. int pos = 0; // 2A. // Use BaseStream. int length = (int)b.BaseStream.Length; while (pos < length) { // 3. // Read integer. int v = b.ReadInt32(); Console.WriteLine(v); // 4. // Advance our position variable. pos += sizeof(int); } } } } Output 1 4 6 7 11 55 777 23 266 44 82 93
Methods, review. Here we review the methods on BinaryReader. It is important to know the exact size of values to read—if we do not use the right method, results will be incorrect.

ReadBoolean: Reads in a true or false value. I haven't used this one, and in many programs int would be used instead.

ReadByte: Reads in a single byte. This is useful for images and archives, but ReadBytes is faster.

ReadChar, ReadChars: These seem confusing, because they vary on the encoding used. Unicode chars are not the same as ASCII ones.

ReadDecimal: Reads in 16 bytes that are a decimal value. More information on the decimal type is available.

Decimal

ReadInt16, ReadInt32, ReadInt64: 2, 4 or 8 bytes are read. I had problems with ReadInt16. I think ReadInt32 is commonly useful.

ReadString: Microsoft says the string is "prefixed with the length, encoded as an integer seven bits at a time."

Sizeof. In the example, I used sizeof(int). This evaluates to the integer value 4 and always will, but it might be preferable for clarity. If you can't remember how many bytes are in an integer, you may have bigger problems.Sizeof
Performance. Most programs read in much more data than they write. I found BinaryReader substantially faster than using plain text. Looking into PeekChar indicates that it performs a separate read each time it is called.

Tip: This can easily multiply the time required for the BinaryReader. PeekChar should thus be avoided.

Fragment that uses PeekChar: C# using (BinaryReader b = new BinaryReader(File.Open("file.bin", FileMode.Open))) { // Do not do this. while (b.PeekChar() != -1) { int v = b.ReadInt32(); } }
Encoding. Sometimes you can fix an encoding problem by specifying Encoding.ASCII to File.Open. I do not understand why this works but it solved one of my problems. Please find someone else for an explanation.
Example that uses Encoding.ASCII: C# // // If all else fails, specify Encoding.ASCII to your File.Open call. // using (BinaryReader b = new BinaryReader( File.Open("file.bin", FileMode.Open, Encoding.ASCII))) { // ... }
Summary. The BinaryReader class is effective for reading binary files. Binary files have great advantages for performance, but they tend not to be standard and can be difficult to work with.
© TheDeveloperBlog.com
The Dev Codes

Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf