Write and read back binary data : BinaryWriter « File Directory Stream « C# / CSharp Tutorial

C# / CSharp Tutorial
1. Language Basics
2. Data Type
3. Operator
4. Statement
5. String
6. struct
7. Class
8. Operator Overload
9. delegate
10. Attribute
11. Data Structure
12. Assembly
13. Date Time
14. Development
15. File Directory Stream
16. Preprocessing Directives
17. Regular Expression
18. Generic
19. Reflection
20. Thread
21. I18N Internationalization
22. GUI Windows Forms
23. 2D
24. Design Patterns
25. Windows
26. XML
27. ADO.Net
28. Network
29. Directory Services
30. Security
31. unsafe
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
C# / CSharp Tutorial » File Directory Stream » BinaryWriter 
15. 27. 2. Write and read back binary data
using System; 
using System.IO;  
 
class MainClass 
  public static void Main() { 
    BinaryWriter dataOut; 
    BinaryReader dataIn; 
 
    int i = 10
    double d = 1.56
    bool b = true
 
    try 
      dataOut = new BinaryWriter(new FileStream("testdata", FileMode.Create))
    
    catch(IOException exc) { 
      Console.WriteLine(exc.Message + "\nCannot open file.")
      return
    
 
    try 
      Console.WriteLine("Writing " + i)
      dataOut.Write(i);  
 
      Console.WriteLine("Writing " + d)
      dataOut.Write(d)
 
      Console.WriteLine("Writing " + b)
      dataOut.Write(b)
 
      Console.WriteLine("Writing " 12.2 7.4)
      dataOut.Write(12.2 7.4)
 
    
    catch(IOException exc) { 
      Console.WriteLine(exc.Message + "\nWrite error.")
    
 
    dataOut.Close()
 
    Console.WriteLine()
 
    try 
      dataIn = new BinaryReader(new FileStream("testdata", FileMode.Open))
    
    catch(FileNotFoundException exc) { 
      Console.WriteLine(exc.Message + "\nCannot open file.")
      return
    
 
    try 
      i = dataIn.ReadInt32()
      Console.WriteLine("Reading " + i)
 
      d = dataIn.ReadDouble()
      Console.WriteLine("Reading " + d)
 
      b = dataIn.ReadBoolean()
      Console.WriteLine("Reading " + b)
 
      d = dataIn.ReadDouble()
      Console.WriteLine("Reading " + d)
    
    catch(IOException exc) { 
      Console.WriteLine(exc.Message + "Read error.")
    
 
    dataIn.Close();  
  
}
Writing 10
Writing 1.56
Writing True
Writing 90.28

Reading 10
Reading 1.56
Reading True
Reading 90.28
15. 27. BinaryWriter
15. 27. 1. Commonly Used Output Methods Defined by BinaryWriter
15. 27. 2. Write and read back binary data
15. 27. 3. Write decimal, strings and char to a file using the BinaryWriter
15. 27. 4. Move internal position for a BinaryWriter
15. 27. 5. Write/Read int, float, char array and bool to a binary file using BinaryWriter
15. 27. 6. Use BinaryWriter to save data in binary format
w___w___w_._j__a_v__a_2_s__.c_om__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.