FileDocCategorySizeDatePackage
Cat.javaAPI DocExample442Wed Feb 15 05:38:12 GMT 2006None

Cat

public class Cat extends Object

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)

    String thisLine;
    for (int i=0; i < args.length; i++) {
     try {
       BufferedReader br = new BufferedReader(new FileReader(args[i]));
       while ((thisLine = br.readLine()) != null) {
         System.out.println(thisLine);
       } // end while 
     } // end try
     catch (IOException ex) {System.err.println(ex);}
   } // end for