Home Java Example Java Io Read the File



Read the File
Posted on: June 8, 2009 at 12:00 AM
As we have read about the BufferedInputStream class that lets you read characters from a stream and stores it in an internal buffer.

Read the File

     

As we have read about  the BufferedInputStream class that lets you read characters from a stream and stores it in an internal buffer. Lets see an example that reads the contains of the existed file.

The given example uses the BufferedInputstream class that reads the bytes from the input stream. The input stream is a file "Filterfile.txt" from which the data is read in form of a byte through the read( ) method. The read( ) method reads the byte from the file that is converted into the character-form.

 

import java.io.*; 

class ReadFilter
{
  public static void main(String args[])
  {
  try 
  {
  FileInputStream fin = new FileInputStream("Filterfile.txt");
  BufferedInputStream bis = new BufferedInputStream(fin);
  
  // Now read the buffered stream.
  while (bis.available() 0
  {
  System.out.print((char)bis.read());
  }
  
  
  catch (Exception e
  {
  System.err.println("Error reading file: " + e);
  }
  }
}

Output of the Program:

C:\nisha>javac ReadFilter.java

C:\nisha>java ReadFilter
This is a text file
C:\nisha>

Download this Program

Related Tags for Read the File:
cclassinputstreambufferreadbyteinputstreamexampleedibytesexameadsputusefrominasmtradclesinputsbufferedinputstreamxaxampsbufferedathaivmpleastrtstreamusesufssthsthatfepleplomonp


More Tutorials from this section

Ask Questions?    Discuss: Read the File  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.