Java ObjectInputStream .readUnsignedShort ()

Syntax

ObjectInputStream.readUnsignedShort() has the following syntax.

public int readUnsignedShort()   throws IOException

Example

In the following code shows how to use ObjectInputStream.readUnsignedShort() method.


//from   www.  j ava 2s. c o  m
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;

public class Main {

  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);
    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();
  }
}

The code above generates the following result.