1. public class CountFileCaller2
     2. {
     3.    public static void main(String[] args)
     4.    {
     5.       try
     6.       {
     7.          System.out.println("Instantiating CountFile2...");
     8.          CountFile2 cf = new CountFile2();
     9.          cf.countChars();
    10.       }
    11.       catch(Exception e)
    12.       {
    13.          System.out.println("" + e.toString());
    14.          e.printStackTrace();
    15.       }
    16.    }
    17. }