Monday 21, May 2012
Welcome Guest, Register | Login  
      Home    |    Tutorials    |    Free Ebooks    |    Free Scripts    |    Articles    |    Blog     |    About Us    |    Contact Us

  Reading file using java

Here is an example of reading text files in java.
Cut & Paste Script
import java.io.*;

public class ReadFile{
    public static void main(String[] args) throws IOException{
      File f;
    f=new File("myfile.txt");

      if(!f.exists()&& f.length()<0)
      System.out.println("The specified file is not exist");

      else{
         FileInputStream finp=new FileInputStream(f);
      byte b;
    do{
      b=(byte)finp.read();
      System.out.print((char)b);
    }
      while(b!=-1);
        finp.close();
        }
    }
  }
 
   
     RELATED SCRIPTS
 
Compare two strings using java
Here is a java program to compare two strings. It will return the position where they start to differ....more »
Category : Java Programs Hits : 445
   
Writing file using java
Here is a java code to write file....more »
Category : Java Programs Hits : 597
   
Handling exceptions in java
Here is a java program to handle an exception....more »
Category : Java Programs Hits : 500
   
Making Beep sound using java
We are making Beep sound using java....more »
Category : Java Programs Hits : 653
   
   
SCRIPT CATEGORIES
 
  C Programs
C Programs scripts
  C++ Programs
C++ Programs scripts
  Java Programs
Java Programs scripts
  JavaScript Examples
JavaScript Examples scripts
  PHP Examples
PHP Examples scripts
  VBScript Examples
VBScript Examples scripts
 
 
 
POPULAR E-BOOKS
 
Download Websites Creation 101  Ebook Websites Creation 101
   
Download 	C Elements of Style Ebook C Elements of Style
   
Download How To Accelerate Your Internet - A practical guide to Bandwidth Management and Optimisation using Open Source Software Ebook How To Accelerate Your Internet - A practical guide to Bandwidth Management and Optimisation using Open Source Software
   
Download How to Avoid Success at all costs Ebook How to Avoid Success at all costs
   
Download 	A Beginners C++ Ebook A Beginners C++
   
 
Studiesinn.com © 2012 All Rights Reserved.
Website Designed & Developed by TechXprtz