Example usage for java.io ObjectInputStream readUnsignedByte

List of usage examples for java.io ObjectInputStream readUnsignedByte

Introduction

In this page you can find the example usage for java.io ObjectInputStream readUnsignedByte.

Prototype

public int readUnsignedByte() throws IOException 

Source Link

Document

Reads an unsigned 8 bit byte.

Usage

From source file:Main.java

public static void main(String[] args) throws Exception {

    byte b = 127;

    FileOutputStream out = new FileOutputStream("test.txt");
    ObjectOutputStream oout = new ObjectOutputStream(out);

    // write something in the file
    oout.writeByte(b);//from w  w  w .  j  a  v  a 2s .  com
    oout.flush();
    oout.close();
    // create an ObjectInputStream for the file we created before
    ObjectInputStream ois = new ObjectInputStream(new FileInputStream("test.txt"));

    // read and print the unshared object
    System.out.println(ois.readUnsignedByte());
    ois.close();
}