Java IO Tutorial - Java FileInputStream(File file) Constructor








Syntax

FileInputStream(File file) constructor from FileInputStream has the following syntax.

public FileInputStream(File file)    throws FileNotFoundException

Example

In the following code shows how to use FileInputStream.FileInputStream(File file) constructor.

/*  w w  w.j  a va2 s.com*/
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;

public class Main {
  public static void main(String[] args) throws IOException {
    FileInputStream fis = new FileInputStream(new File("C://test.txt"));

    // skip bytes from file input stream
    fis.skip(4);

    // read bytes from this stream
    int i = fis.read();

    // converts integer to character
    char c = (char) i;
    System.out.print("Character read: " + c);
  }
}