FileDocCategorySizeDatePackage
cat.javaAPI DocExample570Sun Mar 28 19:08:58 BST 1999None

cat

public class cat extends Object

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

  
    String thisLine;
 
    // Loop across the arguments
    for (int i=0; i < args.length; i++) {
 
     // Open the file for reading
     try {
       BufferedReader br = new BufferedReader(new FileReader(args[i]));
       while ((thisLine = br.readLine()) != null) {
         System.out.println(thisLine);
       } // end while 
     } // end try
     catch (IOException e) {
       System.err.println("Error: " + e);
     }
   } // end for