How to Read and Write Binary Files in Java?

The Binary files contain data in a format that is not human-readable. To make them suitable for storing complex data structures efficiently, in Java, we can read from the write to binary files using the I nput and Output Streams .

In this article, we will learn and see the code implementation to read and write binary files in Java.

Syntax to Read from a Binary File:

InputStream inputStream = new FileInputStream("data.bin");
int data;
while ((data = inputStream.read()) != -1)
// Process the read data
>
inputStream.close();

Syntax to Write to a Binary File:

OutputStream outputStream = new FileOutputStream("data.bin");
// Write data to the output stream
outputStream.close();

Program to Read and Write Binary Files in Java

Below is the implementation of Read and Write Binary Files in Java:

Java

// Java Program to Read and Write Binary Files import java.io.*; // Drver Class public class GFG < // Main Function public static void main(String[] args) // Writing to binary file OutputStream Stream = new FileOutputStream( "data.bin" ); Stream.write( new byte []< 0x48 , 0x65 , 0x6C , 0x6C , 0x6F >); // ASCII values for "Hello" Stream.close(); // Reading from a binary file InputStream inputStream = new FileInputStream( "data.bin" ); while ((data = inputStream.read()) != - 1 ) < System.out.print(( char ) data); // Convert byte to character inputStream.close(); > catch (IOException e) < e.printStackTrace(); Output
Hello

Explanation of the above Program:

Writing to a Binary File:

Reading from a Binary File:

Like Article -->

Please Login to comment.

Similar Reads

How to Read and Write XML Files in Java?

XML is defined as the Extensible Markup Language, and it is mostly used as a format for storing and exchanging data between systems. To read and write XML files, Java programming offers several easily implementable libraries. The most widely used library is the built-in JAXP (Java API for XML processing). What is DOM?The Document Object Model (DOM)

5 min read How to Read and Write JSON Files in Java?

JSON (JavaScript Object Notation) is simple but powe­rful. It helps the server and the client to share information. Applications like­ Java use special tools, or libraries, that re­ad JSON. In Java, some libraries make it easy to read and write JSON files. One popular library is Jackson. In this article, we will learn how to read and write JSON fil

4 min read How to Read and Write Files Using the New I/O (NIO.2) API in Java?

In this article, we will learn how to read and write files using the new I/O (NIO) API in Java. For this first, we need to import the file from the NIO package in Java. This NIO.2 is introduced from the Java 7 version. This provides a more efficient way of handling input and output operations compared to the traditional Java package java.io. Now, b

3 min read Java Program to Read and Print All Files From a Zip File

A zip file is a file where one or more files are compressed together, generally, zip files are ideal for storing large files. Here the zip file will first read and at the same time printing the contents of a zip file using a java program using the java.util.zip.ZipEntry class for marking the zip file and after reading it, the contents inside it wou

4 min read Java Program to Read Content From One File and Write it into Another File

File handling plays a major role in doing so as the first essential step is writing content to a file. For this is one must know how to write content in a file using the FileWriter class. The secondary step is reading content from a file and print the same. For this, one must have good hands on File Reader class to do so. Now in order to read conte

5 min read Image Processing in Java - Read and Write

Java implements a particular type of object called a BufferedImage for images in Java. A BufferedImage can be read from several distinct image types (i.e., BMP, HEIC, etc.). Not all of these are backed by ImageIO itself, but there are plugins to extend ImageIO and other libraries such as Apache Imaging and JDeli. In Java itself, all the complexity

3 min read How to Read Write Object's Data in CSV Format Using Notepad in Java?

The CSV stands for Comma-Separated Values. CSV files can be used with almost any spreadsheet program, such as Microsoft Excel or Google Spreadsheets. They differ from other spreadsheet file types because you can only have a single sheet in a file, they can not save cell, column, or row. Also, you cannot save formulas in this format. Now, to store o

7 min read How to Read and Print an Integer value in Java

The given task is to take an integer as input from the user and print that integer in Java language. In the below program, the syntax and procedures to take the integer as input from the user are shown in Java language. Steps for InputThe user enters an integer value when asked.This value is taken from the user with the help of nextInt() method of

2 min read How to Read Data from Password Protected Excel using Java and Apache POI?

Apache POI is an open-source java library to create and manipulate various file formats based on Microsoft Office. Using POI, one should be able to perform create, modify and display/read operations on the following file formats. For Example, Java doesn’t provide built-in support for working with excel files, so we need to look for open-source APIs

2 min read How to generate and read QR code with Java using ZXing Library

QRCode is abbreviated as Quick Response Code, and we are quite familiar with QRCodes now a days. It is used for authenticated and quick online payments. A QR code uses four standardized encoding modes (numeric, alphanumeric, byte/binary, and kanji) to store data efficiently; extensions may also be used.A QRCode is an arrangement of black and white

3 min read Java program to read all mobile numbers present in given file

Given the input text file, read all mobile numbers present and write to some output file. Suppose we have a file names as input.txt and in that input file we have some Mobile Number which are mixed with some other data. Our task is to read the input file line by line and if we find any Number in that line we have to write that Mobile Number to an a

2 min read How to make an ArrayList read only in Java

Given an ArrayList, the task is to make this ArrayList read-only in Java. Examples: Input: ArrayList: [1, 2, 3, 4, 5] Output: Read-only ArrayList: [1, 2, 3, 4, 5] Input: ArrayList: [geeks, for, geeks] Output: Read-only ArrayList: [geeks, for, geeks] An ArrayList can be made read-only easily with the help of Collections.unmodifiableList() method. Th

2 min read Reader read(char[]) method in Java with Examples

The read(char[]) method of Reader Class in Java is used to read the specified characters into an array. This method blocks the stream till: It has taken some input from the stream.Some IOException has occurredIt has reached the end of the stream while reading. Syntax: public int read(char[] charArray) Parameters: This method accepts a mandatory par

3 min read Reader read(char[], int, int) method in Java with Examples

The read(char[], int, int) method of Reader Class in Java is used to read the specified length characters into an array at a specified offset. This method blocks the stream till: It has taken some input from the stream. Some IOException has occurred It has reached the end of the stream while reading. Syntax: public int read(char[] charArray, int of

3 min read Reader read(CharBuffer) method in Java with Examples

The read(CharBuffer) method of Reader Class in Java is used to read the specified characters into a CharBuffer instance. This method blocks the stream till: It has taken some input from the stream. Some IOException has occurred It has reached the end of the stream while reading. Syntax: public int read(CharBuffer charBuffer) Parameters: This method

2 min read Reader read() method in Java with Examples

The read() method of Reader Class in Java is used to read a single character from the stream. This method blocks the stream till: It has taken some input from the stream. Some IOException has occurred It has reached the end of the stream while reading. This method is declared as abstract method. It means that the subclasses of Reader abstract class

3 min read CharArrayReader read() method in Java with Examples

The read() method of CharArrayReader Class in Java is used to read a single character from the stream. This method blocks the stream till: It has taken some input from the stream. Some IOException has occurred It has reached the end of the stream while reading. This method is declared as abstract method. It means that the subclasses of CharArrayRea

3 min read CharArrayReader read(CharBuffer) method in Java with Examples

The read(CharBuffer) method of CharArrayReader Class in Java is used to read the specified characters into a CharBuffer instance. This method blocks the stream till: It has taken some input from the stream. Some IOException has occurred It has reached the end of the stream while reading. Syntax: public int read(CharBuffer charBuffer) Parameters: Th

2 min read CharArrayReader read(char[], int, int) method in Java with Examples

The read(char[], int, int) method of CharArrayReader Class in Java is used to read the specified length characters into an array at a specified offset. This method blocks the stream till: It has taken some input from the stream. Some IOException has occurred It has reached the end of the stream while reading. Syntax: public int read(char[] charArra

3 min read CharArrayReader read(char[]) method in Java with Examples

The read(char[]) method of CharArrayReader Class in Java is used to read the specified characters into an array. This method blocks the stream till: It has taken some input from the stream. Some IOException has occurred It has reached the end of the stream while reading. Syntax: public int read(char[] charArray) Parameters: This method accepts a ma

2 min read StringReader read(char[]) method in Java with Examples

The read(char[]) method of StringReader Class in Java is used to read the specified characters into an array. This method blocks the stream till: It has taken some input from the stream. Some IOException has occurred It has reached the end of the stream while reading. Syntax: public int read(char[] charArray) Parameters: This method accepts a manda

2 min read StringReader read(char[], int, int) method in Java with Examples

The read(char[], int, int) method of StringReader Class in Java is used to read the specified length characters into an array at a specified offset. This method blocks the stream till: It has taken some input from the stream. Some IOException has occurred It has reached the end of the stream while reading. Syntax: public int read(char[] charArray,

3 min read StringReader read(CharBuffer) method in Java with Examples

The read(CharBuffer) method of StringReader Class in Java is used to read the specified characters into a CharBuffer instance. This method blocks the stream till: It has taken some input from the stream. Some IOException has occurred It has reached the end of the stream while reading. Syntax: public int read(CharBuffer charBuffer) Parameters: This

2 min read StringReader read() method in Java with Examples

The read() method of StringReader Class in Java is used to read a single character from the stream. This method blocks the stream till: It has taken some input from the stream. Some IOException has occurred It has reached the end of the stream while reading. This method is declared as abstract method. It means that the subclasses of StringReader ab

3 min read How to read a Matrix from user in Java?

Given task is to read a matrix from the user. The size and number of elements of matrices are to be read from the keyboard. // Java program to read a matrix from user import java.util.Scanner; public class MatrixFromUser < // Function to read matrix public static void readMatrixByUser() < int m, n, i, j; Scanner in = null; try < in = new Scanner(Sy

2 min read PushbackReader read(char, int, int) method in Java with Examples

The read(char[], int, int) method of PushbackReader Class in Java is used to read the specified length characters into an array at a specified offset. This method blocks the stream till: It has taken some input from the stream. Some IOException has occurred It has reached the end of the stream while reading. Syntax: public int read(char[] charArray

3 min read PushbackReader read() method in Java with Examples

The read() method of PushbackReader Class in Java is used to read a single character from the stream. This method blocks the stream till: It has taken some input from the stream. Some IOException has occurred It has reached the end of the stream while reading. Syntax: public int read() Parameters: This method does not accepts any parameters Return

3 min read ObjectInputStream read() method in Java with examples

The read() method of the ObjectInputStream class in Java reads a byte of data. This method wont run if there is no data. Syntax: public int read() Parameters: This method does not accept any parameter. Return Value: This method returns the byte read, or -1 if the end of the stream is reached. Exceptions: The function throws an IOException if an I/O

1 min read CharBuffer read() methods in Java with Examples

The read() method of java.nio.CharBuffer Class is used to read characters into the specified character buffer. The buffer is used as a repository of characters as-is: the only changes made are the results of a put operation. No flipping or rewinding of the buffer is performed. Syntax: public int read(CharBuffer target) Parameter: This method takes

4 min read Java Program to Read Elements using Enumeration in Hashtable

The enumeration in java is one of the predefined interfaces, whose object is used for retrieving the data from collections framework variable(like Stack, Vector, HashTable, etc.) in a forward direction only and not in the backward direction. HashTable is a class The hash table class implements a Map, which maps keys to values. It stores the key/val