List of usage examples for java.io FilterInputStream available
public int available() throws IOException
From source file:Main.java
public static void main(String[] args) throws IOException { int i = 0;// w ww .ja va 2 s. c om InputStream is = new FileInputStream("C://test.txt"); FilterInputStream fis = new BufferedInputStream(is); while ((i = fis.read()) != -1) { char c = (char) i; System.out.print("Read: " + c); int j = fis.available(); System.out.println("; Available bytes: " + j); } }