Where exactly do you have problems?
Becuase this exercise seems very "straight-away", you both files one for writing, one for reading then you copy all charackters in a file to another.
You open files by:
FileReader fr = new FileReader(new File(file1));
FileWriter fw = new FileWriter(new File(file2));
file1 and file2 are String paths to your files.