Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • Java Arrays
  • Java Strings
  • Java OOPs
  • Java Collection
  • Java 8 Tutorial
  • Java Multithreading
  • Java Exception Handling
  • Java Programs
  • Java Project
  • Java Collections Interview
  • Java Interview Questions
  • Java MCQs
  • Spring
  • Spring MVC
  • Spring Boot
  • Hibernate
Open In App
Next Article:
Java.io.OutputStream class in Java
Next article icon

Java.io.ObjectInputStream Class in Java | Set 1

Last Updated : 06 Jul, 2023
Comments
Improve
Suggest changes
Like Article
Like
Report

ObjectInputStream Class deserializes the primitive data and objects previously written by ObjectOutputStream.

  • Both ObjectOutputStream and ObjectInputStream are used as it provides storage for graphs of object.
  • It ensures that the object it is working for, matches the classes of JVM i.e Java Virtual Machine. Only those Object can be read from the streams that supports Serializable or Externalizable – IO classes, otherwise error. Serializable is basically a kind of marker for JVM(Java Virtual Machine) directing it to write out the state of Object present in Stream

Declaration : 

public class ObjectInputStream
extends InputStream
implements ObjectInput, ObjectStreamConstants

Constructors : 

  • protected ObjectInputStream() : Help the sub-classes to not allocate private data used by ObjectInputStream, if they are re-implementing the ObjectInputStream.
  • ObjectInputStream(InputStream source_input) : Create ObjectInputStream that read data from the ‘source_input’ Input Stream.

Methods: 

  • read() : java.io.ObjectInputStream.read() reads the byte of data and blocks in case no data is present to read. Syntax :
public int read()
Parameters :
-----------
Return :
reads byte else, return -1 if end of Stream is detected.
Exception :
-> IOException : in case of any IO error occurs.
  • readBoolean() : java.io.ObjectInputStream.readBoolean() reads in a boolean.
    Syntax :
public int readBoolean()
Parameters :
-----------
Return :
reads in a boolean.
Exception :
-> IOException : in case of any IO error occurs.
-> EOFException : if end of the stream is reached.

Java




// Java program explaining the working of read(), readBoolean() method
 
import java.io.*;
 
public class NewClass
{
    public static void main(String[] args) throws IOException
    {
        // create a new file with an ObjectOutputStream and ObjectInputStream
        FileOutputStream geek_out = new FileOutputStream("GEEKS.txt");
         
        ObjectOutputStream geek_outStream = new ObjectOutputStream(geek_out);
        ObjectInputStream Geek_inStream =
                        new ObjectInputStream(new FileInputStream("GEEKS.txt"));
 
        // Methods covered in later
        geek_outStream.writeBoolean(true);
        geek_outStream.writeUTF("Geeks For Geeks");
        geek_outStream.flush();
 
        // Use of readBoolean()
        System.out.println("USe of readBoolean() : " + Geek_inStream.readBoolean());
 
        System.out.print("Use of read() method in Java : ");
         
        // Use of read() method : reading the content of file
        for (int i = 0; i < Geek_inStream.available();)
        {
            System.out.print((char) Geek_inStream.read());
        }
 
    }
}
 
 
  • Output :
USe of readBoolean() : true
Use of read() method in Java : Geeks For Geeks
  • read(byte[] buffer, int offset, int maxlen) : java.io.ObjectInputStream.read(byte[] buffer, int offset, int maxlen) reads part of data from the ‘buffer’ starting from offset position upto maxlen position of the buffer. Syntax :
public int read(byte[] buffer, int offset, int maxlen)
Parameters :
buffer : buffer to be read
offset : starting position of the buffer
maxlen : max. no. of bytes to be read
Return :
reads 'maxlen' bytes of data else, return -1 if end of Stream is detected.
Exception :
-> IOException : in case of any IO error occurs.

Java




// Java program explaining the working of
// read(byte[] buffer, int offset, int maxlen)
 
import java.io.*;
 
public class NewClass
{
    public static void main(String[] args) throws IOException
    {
        // create a new file with an ObjectOutputStream and ObjectInputStream
        FileOutputStream geek_out = new FileOutputStream("GEEKS.txt");
         
        ObjectOutputStream geek_outStream = new ObjectOutputStream(geek_out);
         
        // create an ObjectInputStream for the file we created before
        ObjectInputStream Geek_inStream
            = new ObjectInputStream(new FileInputStream("GEEKS.txt"));
 
 
        geek_outStream.writeUTF("GeeksForGeeks");
        geek_outStream.flush();
 
        byte[] buffer = new byte[25];
 
        // Use of read(byte[] buffer, int offset, int maxlen)
        Geek_inStream.read(buffer, 2, 20);
 
        System.out.print("Use of read(buffer, offset, maxlen) : ");
        for (int i = 0; i < 19; i++)
        {
            System.out.print((char)buffer[i]);
        }
    }
}
 
 
  • Output : 
GeeksForGeeks
  • readByte() : java.io.ObjectInputStream.readByte() reads 8-bit byte.
    Syntax :
public byte readByte()
Parameters :
-----------
Return :
reads 8-bit byte.
Exception :
-> IOException : in case of any IO error occurs.
-> EOFException : if end of the stream is reached.
  • readChar() : java.io.ObjectInputStream.readChar() reads 16-bit of char.
    Syntax :
public int read()
Parameters :
-----------
Return :
reads 16-bit of char.
Exception :
-> IOException : in case of any IO error occurs.
-> EOFException : if end of the stream is reached.
  • readDouble() : java.io.ObjectInputStream.readDouble() reads 64 bit double.
    Syntax :
public double readDouble()
Parameters :
-----------
Return :
reads 64 bit double.
Exception :
-> IOException : in case of any IO error occurs.
-> EOFException : if end of the stream is reached.
  • readFloat() : java.io.ObjectInputStream.readFloat() reads a 32 bit float.
    Syntax :
public float readFloat()
Parameters :
-----------
Return :
reads a 32 bit float.
Exception :
-> IOException : in case of any IO error occurs.
-> EOFException : if end of the stream is reached.
  • readInt() : java.io.ObjectInputStream.readInt() reads a 32 bit int.
    Syntax :
public int readInt()
Parameters :
-----------
Return :
reads a 32 bit int.
Exception :
-> IOException : in case of any IO error occurs.
-> EOFException : if end of the stream is reached.
  • readLong() : java.io.ObjectInputStream.readLong() reads a 64 bit long.
    Syntax :
public long readLong()
Parameters :
-----------
Return :
reads a 64 bit long.
Exception :
-> IOException : in case of any IO error occurs.
-> EOFException : if end of the stream is reached.

Java




// Java program explaining the working of
// readChar(), writeByte(), writeDouble(),
// writeFloat(), writeInt(), writeLong()
 
import java.io.*;
 
public class NewClass
{
    public static void main(String[] args) throws IOException
    {
        // create a new file with an ObjectOutputStream and ObjectInputStream
        FileOutputStream geek_out = new FileOutputStream("GEEKS.txt");
        ObjectOutputStream geek_outStream = new ObjectOutputStream(geek_out);
         
        // create an ObjectInputStream for the file we created before
        ObjectInputStream Geek_inStream
                    = new ObjectInputStream(new FileInputStream("GEEKS.txt"));
 
 
        geek_outStream.writeChar('G');
        geek_outStream.writeByte('G');
        geek_outStream.writeDouble(00436754746);
        geek_outStream.writeFloat(2.12345f);
        geek_outStream.writeInt(3576);
        geek_outStream.writeLong(368723776);
 
        geek_outStream.flush();
 
        // Use of readChar()
        System.out.println("Use of readChar() : " + Geek_inStream.readChar());
 
        // Use of readByte() :
        System.out.println("Use of readByte() : " + Geek_inStream.readByte());
 
        // Use of readDouble() :
        System.out.println("Use of readDouble() : " + Geek_inStream.readDouble());
 
        // Use of readFloat() :
        System.out.println("Use of readFloat() : " + Geek_inStream.readFloat());
 
        // Use of readInt() :
        System.out.println("Use of readInt() : " + Geek_inStream.readInt());
 
        // Use of readLong() :
        System.out.println("Use of readLong() : " + Geek_inStream.readLong());
    }
}
 
 
  • Output : 
Use of readChar() : G
Use of readByte() : 71
Use of readDouble() : 7.5225574E7
Use of readFloat() : 2.12345
Use of readInt() : 3576
Use of readLong() : 368723776
  • readUnsignedByte() : java.io.ObjectInputStream.readUnsignedByte() reads an unsigned 8 bit byte.
    Syntax :
public int readUnsignedByte()
Parameters :
-----------
Return :
reads an unsigned 8 bit byte.
Exception :
-> IOException : in case of any IO error occurs.
-> EOFException : if end of the stream is reached.
  • readUnsignedShort() : java.io.ObjectInputStream.readUnsignedShort() reads an unsigned 16 bit short. Syntax :
public int readUnsignedShort()
Parameters :
-----------
Return :
reads an unsigned 16 bit short.
Exception :
-> IOException : in case of any IO error occurs.
-> EOFException : if end of the stream is reached.

Java




// Java program explaining the working of
// readUnsignedByte() and readUnsignedShort()
 
import java.io.*;
 
public class NewClass
{
    public static void main(String[] args) throws IOException
    {
        // create a new file with an ObjectOutputStream and ObjectInputStream
        FileOutputStream geek_out = new FileOutputStream("GEEKS.txt");
        ObjectOutputStream geek_outStream = new ObjectOutputStream(geek_out);
         
        // create an ObjectInputStream for the file we created before
        ObjectInputStream Geek_inStream
                    = new ObjectInputStream(new FileInputStream("GEEKS.txt"));
 
        geek_outStream.writeByte(111);
        geek_outStream.writeShort(121212);
 
        geek_outStream.flush();
 
        // Use of readUnsignedByte()
        System.out.println("readUnsignedByte() : "
                        + Geek_inStream.readUnsignedByte());
 
        // Use of readUnsignedShort() :
        System.out.println("readUnsignedShort() : "
                        + Geek_inStream.readUnsignedShort());
    }
}
 
 
  • Output : 
readUnsignedByte() : 111
readUnsignedShort() : 55676
  • readUTF() : java.io.ObjectInputStream.readUTF()reads String in modified UTF-8 (Unicode Transformation Format) format. UTF -8 means it uses 8-bit blocks to represent a character.
    Syntax :
public String readUTF()
Parameters :
public final Object readObject()
Return :
reads String in modified UTF-8 (Unicode Transformation Format) format
Exception :
-> IOException : in case of any IO error occurs.

Java




// Java program explaining the working of readUTF()
 
import java.io.*;
 
public class// Java program explaining the working of readUTF()
 
import java.io.*;
 
public class NewClass
{
    public static void main(String[] args) throws IOException, ClassNotFoundException
    {
        // create a new file with an ObjectOutputStream and ObjectInputStream
        FileOutputStream geek_out = new FileOutputStream("GEEKS.txt");
        ObjectOutputStream geek_outStream = new ObjectOutputStream(geek_out);
 
        ObjectInputStream Geek_inStream
                    = new ObjectInputStream(new FileInputStream("GEEKS.txt"));
 
         
        geek_outStream.writeUTF("gEEKSArehERE");
        geek_outStream.flush();
 
        // Use of readUTF() method
        System.out.println("Use of readUTF() : " + Geek_inStream.readUTF());
    }
}
 
 
  • Output :
Use of readUTF() : gEEKSArehERE
  • skipBytes(int maxlen) : java.io.ObjectInputStream.skipBytes(int maxlen)skips ‘maxlen’ no. of bytes while reading.
    Syntax :
public int skipBytes(int maxlen)
Parameters :
maxlen : max. no. of bytes to be skipped
Return :
no. of bytes to be skipped
Exception :
-> IOException : in case of any IO error occurs.

Java




// Java program explaining the working of skipBytes()
 
import java.io.*;
 
public class NewClass
{
    public static void main(String[] args) throws IOException, ClassNotFoundException
    {
        // create a new file with an ObjectOutputStream and ObjectInputStream
        FileOutputStream geek_out = new FileOutputStream("GEEKS.txt");
        ObjectOutputStream geek_outStream = new ObjectOutputStream(geek_out);
 
        ObjectInputStream Geek_inStream
                    = new ObjectInputStream(new FileInputStream("GEEKS.txt"));
                     
        geek_outStream.writeUTF("gEEKSArehERE");
        geek_outStream.flush();
 
        // Use of skipBytes() :
        Geek_inStream.skipBytes(7);
         
        for (int i = 2; i < Geek_inStream.available(); i++)
        {
            System.out.print((char) Geek_inStream.readByte());
        }
    }
}
 
 
  • Output : 
Are
  • readFully(byte[] destination) : java.io.ObjectInputStream.readFully(byte[] destination)reads all the bytes from source to the destination array.
    Syntax :
public void readFully(byte[] destination)
Parameters :
destination : the buffer in which the data is to be read
Return :
returns the 32 bit float read
Exception :
-> IOException : in case of any IO error occurs.
-> EOFException : if End of stream is reached

Java




// Java program explaining the working of readFully()
 
import java.io.*;
 
public class NewClass
{
    public static void main(String[] args) throws IOException, ClassNotFoundException
    {
        // create a new file with an ObjectOutputStream and ObjectInputStream
        FileOutputStream geek_out = new FileOutputStream("GEEKS.txt");
        ObjectOutputStream geek_outStream = new ObjectOutputStream(geek_out);
 
        ObjectInputStream Geek_inStream
                    = new ObjectInputStream(new FileInputStream("GEEKS.txt"));
 
        geek_outStream.writeUTF("gEEKSArehERE");
        geek_outStream.flush();
 
     
      
        byte[] destination = new byte[14];
         
        // Use of readFully()
        Geek_inStream.readFully(destination);
         
        String str = new String(destination);
        System.out.println("Use of readFully(destination, offset, maxlen) : "+str);
    }
}
 
 
  • Output : 
Use of readFully(destination, offset, maxlen) : gEEKSArehERE
  • readFully(byte[] destination, int offset, int maxlen) : java.io.ObjectInputStream.readFully(byte[] destination, int offset, int maxlen)reads some the bytes (starting from offset to maxlen position) from source to the destination array .
    Syntax :
public void readFully(byte[] destination, int offset, int maxlen)
Parameters :
destination : the buffer in which the data is to be read
offset : starting position of the buffer
maxlen : max no. of bytes to be read
Return :
void
Exception :
-> IOException : in case of any IO error occurs.
-> EOFException : if End of stream is reached

Java




// Java program explaining the working of
// readFully(byte[] destination, int offset, int maxlen)
 
import java.io.*;
 
public class NewClass
{
    public static void main(String[] args) throws IOException, ClassNotFoundException
    {
        // create a new file with an ObjectOutputStream and ObjectInputStream
        FileOutputStream geek_out = new FileOutputStream("GEEKS.txt");
        ObjectOutputStream geek_outStream = new ObjectOutputStream(geek_out);
 
        ObjectInputStream Geek_inStream
                    = new ObjectInputStream(new FileInputStream("GEEKS.txt"));
 
        geek_outStream.writeUTF("gEEKSArehERE");
        geek_outStream.flush();
 
     
        byte[] destination = new byte[14];
         
        // Use of readFully(byte[] destination, int offset, int maxlen)
        Geek_inStream.readFully(destination, 3, 7);
         
        String str = new String(destination);
        System.out.println("Use of readFully(destination, offset, maxlen) : "+ str);
    }
}
 
 
  • Output : 
Use of readFully(destination, offset, maxlen) : geeks



Next Article
Java.io.OutputStream class in Java

M

Mohit Gupta
Improve
Article Tags :
  • Java
  • Java-I/O
Practice Tags :
  • Java

Similar Reads

  • Java.io.ObjectInputStream Class in Java | Set 2
    Java.io.ObjectInputStream Class in Java | Set 1 Note : Java codes mentioned in this article won't run on Online IDE as the file used in the code doesn't exists online. So, to verify the working of the codes, you can copy them to your System and can run it over there. More Methods of ObjectInputStrea
    6 min read
  • Java.io.ObjectOutputStream Class in Java | Set 1
    An ObjectOutputStream writes primitive data types and graphs of Java objects to an OutputStream. The objects can be read (reconstituted) using an ObjectInputStream. Persistent storage of objects can be accomplished by using a file for the stream. Only objects that support the java.io.Serializable in
    9 min read
  • Java.io.Printstream Class in Java | Set 1
    A PrintStream adds functionality to another output stream, namely the ability to print representations of various data values conveniently. Unlike other output streams, a PrintStream never throws an IOException; instead, exceptional situations merely set an internal flag that can be tested via the c
    5 min read
  • Java.io.Printstream Class in Java | Set 2
    Java.io.Printstream Class in Java | Set 1More Methods: PrintStream printf(Locale l, String format, Object... args) : A convenience method to write a formatted string to this output stream using the specified format string and arguments. Syntax :public PrintStream printf(Locale l, String format, Obje
    6 min read
  • Java.io.OutputStream class in Java
    This abstract class is the superclass of all classes representing an output stream of bytes. An output stream accepts output bytes and sends them to some sink. Applications that need to define a subclass of OutputStream must always provide at least a method that writes one byte of output. Constructo
    2 min read
  • Java.io.PipedInputStream class in Java
    Pipes in IO provides a link between two threads running in JVM at the same time. So, Pipes are used both as source or destination. PipedInputStream is also piped with PipedOutputStream. So, data can be written using PipedOutputStream and can be written using PipedInputStream.But, using both threads
    5 min read
  • Java.io.PushbackInputStream class in Java
    Pushback is used on an input stream to allow a byte to be read and then returned (i.e, "pushed back") to the stream. The PushbackInputStream class implements this idea. It provides a mechanism "peek" at what is coming from an input stream without disrupting it. It extends FilterInputStream.Fields: p
    7 min read
  • Java.io.LineNumberInputStream Class in Java
    java.io.LineNumberInputStream class is simply an extension of input stream providing a extra facility to keep the record of current line number. Line is a sequence of bytes ending with : '\r' i.e. a carriage return character or a newline character : '\n', or a linefeed character following the carria
    11 min read
  • Java.io.PrintWriter class in Java | Set 1
    Java PrintWriter class gives Prints formatted representations of objects to a text-output stream. It implements all of the print methods found in PrintStream. It does not contain methods for writing raw bytes, for which a program should use unencoded byte streams. Unlike the PrintStream class, if au
    5 min read
  • Java.io.PrintWriter class in Java | Set 2
    Java.io.PrintWriter class in Java | Set 1 More methods: PrintWriter printf(Locale l, String format, Object... args) : A convenience method to write a formatted string to this writer using the specified format string and arguments. Syntax :public PrintWriter printf(Locale l, String format, Object...
    7 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences