Copy a file : FileInputStream « File Input Output « Java






Copy a file

   

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;

public class Main {

  public static void main(String[] args) throws Exception {

    FileInputStream fin = null;
    FileOutputStream fout = null;

    File file = new File("C:/myfile1.txt");

    fin = new FileInputStream(file);
    fout = new FileOutputStream("C:/myfile2.txt");

    byte[] buffer = new byte[1024];
    int bytesRead;
    while ((bytesRead = fin.read(buffer)) > 0) {
      fout.write(buffer, 0, bytesRead);
    }
    fin.close();
    fout.close();
  }
}

   
    
    
  








Related examples in the same category

1.Read file using FileInputStream
2.Skip n bytes while reading the file using FileInputStream
3.Copying One File to Another
4.Copying One File to Another with FileChannel
5.Read bytes and display their hexadecimal values.
6.Reading a File into a Byte Array: reads the entire contents of a file into a byte array
7.Use Java NIO to Copy File
8.Read one byte from a file
9.Read file character by character
10.Count characters with FileInputStream
11.Read and copy with FileInputStream and FileOutputStream
12.Copy a file with FileOutputStream and FileInputStreamCopy a file with FileOutputStream and FileInputStream
13.Read file in byte array using FileInputStream
14.Display file contents in hexadecimal
15.Resettable File InputStream