Show the content of a file : Stream « File Input Output « Java






Show the content of a file

   
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;

class ShowFile {
  public static void main(String args[]) throws IOException {
    int i;
    FileInputStream fin;

    try {
      fin = new FileInputStream(args[0]);
    } catch (FileNotFoundException e) {
      System.out.println("File Not Found");
      return;
    } catch (ArrayIndexOutOfBoundsException e) {
      System.out.println("Usage: ShowFile File");
      return;
    }
    do {
      i = fin.read();
      if (i != -1)
        System.out.print((char) i);
    } while (i != -1);

    fin.close();
  }
}

   
    
  








Related examples in the same category

1.Some general utility functions for dealing with Streams
2.Utilities related to file and stream handling.
3.Utility functions related to Streams
4.Utility methods for handling streams
5.Various utility methods that have something to do with I/O
6.General IO Stream manipulation
7.General IO stream manipulation utilities
8.Count the number of bytes read through the stream
9.Count OutputStream
10.File utilities for file read and write
11.An InputStream class that terminates the stream when it encounters a particular byte sequence.
12.An InputStream that implements HTTP/1.1 chunking
13.An OutputStream which relays all data written into it into a list of given OutputStreams
14.Utility code for dealing with different endian systems
15.Copy From Stream To File
16.Copy Inputstream To File
17.Load Stream Into String
18.Reads the content of an input stream and writes it into an output stream.