|
Java™ by example!
|
|
|
How do I skip part of an inputstream when reading from it?
You can do so using the method skip. You can call this method from any point where you are in the inputstream. The following program skips half of the file, where the filename is supplied at command line. Main.java:
Further Information
Author of answer: Joris Van den Bogaert
Comments to this answer are only viewable by members. Login or become a member!
|
|
|
|
|