Method skipBytes(int n)
Return type: int
Member of:
java.io.DataInputStream
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
dis.skipBytes(2); // skip attr_id (short)
2
in.skipBytes(8);
3
while((bytes -= in.skipBytes(bytes)) != 0) {
4
dataInput.skipBytes (8); // left position
5
while((classfileLength -= in.skipBytes(classfileLength)) != 0) {
6
source.skipBytes(length + 4); // skip it and its CRC code
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.