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.
//www.ja v a 2 s .c o m
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);
}
}
Home »
Java Tutorial »
java.io »
Java Tutorial »
java.io »