Example usage for java.io ObjectInputStream skipBytes

List of usage examples for java.io ObjectInputStream skipBytes

Introduction

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

Prototype

public int skipBytes(int len) throws IOException 

Source Link

Document

Skips bytes.

Usage

From source file:Main.java

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

    String s = "Hello World!";
    FileOutputStream out = new FileOutputStream("test.txt");
    ObjectOutputStream oout = new ObjectOutputStream(out);

    oout.writeUTF(s);/* ww  w  .  j  a v  a 2s.  c  o  m*/
    oout.writeUTF("This is an example from java2s.com");
    oout.flush();
    oout.close();

    ObjectInputStream ois = new ObjectInputStream(new FileInputStream("test.txt"));

    ois.skipBytes(4);
    for (int i = 0; i < ois.available() - 4; i++) {
        System.out.print((char) ois.readByte());
    }
    ois.close();
}