Method skip(long n)
Return type: long
Member of: java.io.FilterInputStream
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 inputStream.skip(chunkLength);
2 in.skip(4);
3 inputStream.skip(chunkLength);
4 while(_inputStream.skip(4096)>0 || _inputStream.read()>=0);
5 stream.skip(((Integer) arrayOffset).intValue());
6 stream.skip(this.chunkOffsets[0]);
7 dis.skip(2 * 3);
8 in.skip(as);
9 in.skip(in.readShort()); // Attribute Length
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.