Find the size of the File in Java program

  1. import java.io.*;  
  2.   
  3. public class ReadInByteArray {  
  4.     public static void main(String[] args) {  
  5.         try{  
  6.             File file = new File("tapan.txt");   
  7.             int size = (int)file.length();    //It gives the length of the file.  
  8.             System.out.println("Size of the file: " + size);  
  9.         }  
  10.         catch (Exception e){  
  11.             System.out.println("Exception has been thrown :" + e);  
  12.         }  
  13.     }