Question: in JAVA Make a program to write text to a file and read text from that same file. Follow the instructions below. Define a class,
in JAVA

Make a program to write text to a file and read text from that same file. Follow the instructions below. Define a class, with an identifier of Lab08, that contains the necessary main member method to run the program. Create a loop that lets the user enter pairs of usernames and passwords to be stored in a text file namec credentials.txt until the user no longer wants to continuing entering usernames and passwords to the text file. After each pair of username and password is provided, save the values entered to the text file and separate it by a tab \t. Remember to close the text file. After the user has entered all the usernames and passwords, read credentials.txt and display the usernames and passwords one line at a time. Remember to close the text file. Program start. Username: user1 Password: pass1 Do you want to input another username and password (Y/N)? Y Username: user2 Password: pass2 Do you want to input another username and password (Y/N)? Y Username: user3 Password: pass3 Do you want to input another username and password (Y/N)? N List of usernames and passwords: Username : user1 1 Username: user2 Password: pass2 Username: user3 3 Password: pass 3 Program end
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
