read from binary file code example

Example 1: read binary file python

file = open("sample.bin", "rb")
binary_data = file. read()

Example 2: write a binary file c

FILE *write_ptr;

write_ptr = fopen("test.bin","wb");  // w for write, b for binary

fwrite(buffer,sizeof(buffer),1,write_ptr); // write 10 bytes from our buffer

Example 3: reading binary file

with open("myfile", "rb") as f:
    byte = f.read(1)
    while byte != b"":
        # Do stuff with byte.
        byte = f.read(1)

Example 4: reading from a binary file

public static main(String[] args)
{
  Fileinputsream = new FileInputStream("");
  buffered
  
}

Tags:

C Example