Concatenate files

 
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.RandomAccessFile;

public class Cat {
  public static void concatenate(String fileName) {
    RandomAccessFile file = null;
    String line = null;

    try {
      file = new RandomAccessFile(fileName, "r");
      while ((line = file.readLine()) != null) {
        System.out.println(line);
      }
      return;
    } catch (FileNotFoundException fnf) {
      System.err.println("File: " + fileName + " not found.");
    } catch (Exception e) {
      System.err.println(e.toString());
    } finally {
      if (file != null) {
        try {
          file.close();
        } catch (IOException io) {
        }
      }
    }

  }

  public static void main(String[] args) {
    for (int i = 0; i < args.length; i++)
      Cat.concatenate(args[i]);
  }
}
  
Home 
  Java Book 
    Runnable examples  

IO File:
  1. Compare File Dates
  2. Compress files using with ZIP
  3. Concatenate files
  4. Copy a File with NIO FileChannel and ByteBuffer
  5. Copy a file with FileReader and FileWriter
  6. Copy a file with InputStream and OutputStream
  7. Copy a file and overwrite
  8. Delete a file
  9. Delete File Recursively
  10. Get readable file size
  11. Move a file
  12. Rename a file
  13. Report a file's status
  14. Search a file by regular expressions
  15. Touch a file: set File Last Modified Time