Java I/O How to - Skip n bytes while reading the file








Question

We would like to know how to skip n bytes while reading the file.

Answer

//from   w  w w .  j  a va  2  s .  com
import java.io.File;
import java.io.FileInputStream;

public class Main {

  public static void main(String[] args) throws Exception {
    File file = new File("C:/String.txt");
    FileInputStream fin = new FileInputStream(file);

    int ch;
    // skip first 10 bytes
    fin.skip(10);
    while ((ch = fin.read()) != -1){
      System.out.print((char) ch);
    }
  }
}