Example usage for java.io ObjectInputStream readUnsignedShort

List of usage examples for java.io ObjectInputStream readUnsignedShort

Introduction

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

Prototype

public int readUnsignedShort() throws IOException 

Source Link

Document

Reads an unsigned 16 bit short.

Usage

From source file:Main.java

public static void main(String[] args) throws Exception {
    short b = 32767;

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

    // write something in the file
    oout.writeShort(b);/*from ww w  .j  a  va  2 s. c o  m*/
    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 short
    System.out.println(ois.readUnsignedShort());
    ois.close();
}