Write a program that will make a copy of a text file, line by line. Read the nam
ID: 3547600 • Letter: W
Question
Write a program that will make a copy of a text file, line by line. Read the name of the existing file and the name of the new file the copy from the keyboard. Use the methods of the class File to test whether the original file exists and can be read. If not, display an error message and abort the program. If the original file exists and there isnt a file with the same name as the new file, copy the file. If a file with the name of the new file exists, display a warning message and allow the user to either abort the program, overwrite the existing file, or enter a new name for the file. Create the existing file with a text editor (e.g. you may use Word but save the file as a text (.txt) file).
Hint: To find the text file, use a full path name when entering the file name, such as
C: extfilesStateCapitals.txt
You can save typing in the full path name by putting the file in the project directory, such as in
C:UsersmeDocumentsNetBeansProjectsProject4
and just typing in the file names.
Sample program executions follow:
Enter the name of the existing file: old.txt
Enter the name of the new file: new.txt
Copying old.txt into new.txt
Enter the name of the existing file: old.txt
Enter the name of the new file: new.txt
old.txt does not exist.
Exiting program.
Enter the name of the existing file: old.txt
Enter the name of the new file: new.txt
new.txt already exists
Choose from the following choices:
1 Exit the program
2 Overwrite the existing file
3 Enter a new name for the file
Enter a number: 1
Exiting program
Enter the name of the existing file: old.txt
Enter the name of the new file: new.txt
new.txt already exists
Choose from the following choices:
1 Exit the program
2 Overwrite the existing file
3 Enter a new name for the file
Enter a number: 2
Overwriting new.txt
Enter the name of the existing file: old.txt
Enter the name of the new file: new.txt
new.txt already exists
Choose from the following choices:
1 Exit the program
2 Overwrite the existing file
3 Enter a new name for the file
Enter a number: 3
Enter a new name for the file: newer.txt
Copying old.txt into newer.txt
Explanation / Answer
Plese repost! it says the link has been put down
:(
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.