A good answer might be:Yes. |
Text File Copy ProgramThe following program copies a source text file to a destination text file. An already existing file with the same name as destination file will be destroyed. The names of the source and destination come from the command line. It looks like this: java copy sourceFile to destinationFile Some computer systems reverse the order of source and destination. Getting them backwards might be disasterous! Our program requires the word "to" in the command line to ensure that the user knows the correct order. The program will use a FileReader and a BufferedReader for input and a FileWriter and a BufferedWriter for output. |
QUESTION 7:Click Here after you have answered the question |