Answers for "copy data from one file to another in java using New IO API"

7

Java how to copy file

var source = new File("src/resources/bugs.txt");
var dest = new File("src/resources/bugs2.txt");

Files.copy(source.toPath(), dest.toPath(), 
           StandardCopyOption.REPLACE_EXISTING);

//Source: http://zetcode.com/java/copyfile/
Posted by: Guest on March-01-2020
0

copy file with byte java

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

public class Main {
    public static void main(String[] args) {
        FileInputStream in =null;
        FileOutputStream out=null;
        try {
            in=new FileInputStream(args[0]);
            out=new FileOutputStream(args[1]);

            int c;
            while ((c=in.read())!=-1){
                out.write(c);
            }
        }
        catch (Exception e){
            System.out.println("Error Copping File");
        }
    }
}
Posted by: Guest on June-16-2020

Code answers related to "copy data from one file to another in java using New IO API"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language