List of usage examples for java.io FilterInputStream skip
public long skip(long n) throws IOException
n
bytes of data from the input stream. From source file:Main.java
public static void main(String[] args) throws Exception { int i = 0;//from w w w .j a v a 2s. c om // create input streams InputStream is = new FileInputStream("C://test.txt"); FilterInputStream fis = new BufferedInputStream(is); while ((i = fis.read()) != -1) { // converts integer to character char c = (char) i; // skips 3 bytes fis.skip(3); System.out.println("Character read: " + c); } }