import java.io.*;
... ...

解决方案 »

  1.   

    import java.io.*;
    class Cat {
    public static void main (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
    } // end main
    }这个程序应该满足你的要求吧:)