package test; import java.io.*; public class Copy { public Copy() { } public void cpy() throws IOException { File inputFile = new File("C:\\atest_s\\test"); File outputFile = new File("C:\\atest_t"); FileInputStream in = new FileInputStream(inputFile); FileOutputStream out = new FileOutputStream(outputFile); int c; while ((c = in.read()) != -1) out.write(c); in.close(); out.close(); } }