Question: Java only please Thank You! ur employer has asked you to develop a banking application. e application must - Store information to a file File
Java only please


Thank You!
ur employer has asked you to develop a banking application. e application must - Store information to a file File must contain - Name - Current balance of Checking - Interest rate on account (APR) - Current balance in Savings account - Edit client information Add new client if they don't exist. Edit or delete existing client - Move money between checking and saving - Calculate monthly interest and add it to the balance for each account separately. - Withdraw money from either account. - Deposit money into either account. - Balance Inquiry of both accounts. - Store information for multiple clients. - Be able to print reports showing current balances and percentage rate of all clients. This week I expect two files. Each file for this week should have their own Main methods and will be runable on their own: - Main.java - This will contain your main menu as outlined in the project video. It will also have method stubs so that you can fully test your menu and all of its options. - File.java - you can use your assignment as a guide to start this. You will have a read method and a write method. At this time neither will take arguments or return a value. - write method = write to a file using the CSV method you used in your last programming assignment. Try to figure out how many fields you will need, and what their variable types will need to be. Write 5 records using these values. Remember a record is a set of related data, example, in the banking app you will have 5 customers so store 5 records of those customers. - read method - Read in and print out all of the records stored in the file. Use the same method to seperate the different fields of each record into their associated fields prior to printing them out. Do NOT just print out the values as they are read from the file. Make sure to convert them to their ur employer has asked you to develop a banking application. e application must - Store information to a file File must contain - Name - Current balance of Checking - Interest rate on account (APR) - Current balance in Savings account - Edit client information Add new client if they don't exist. Edit or delete existing client - Move money between checking and saving - Calculate monthly interest and add it to the balance for each account separately. - Withdraw money from either account. - Deposit money into either account. - Balance Inquiry of both accounts. - Store information for multiple clients. - Be able to print reports showing current balances and percentage rate of all clients. This week I expect two files. Each file for this week should have their own Main methods and will be runable on their own: - Main.java - This will contain your main menu as outlined in the project video. It will also have method stubs so that you can fully test your menu and all of its options. - File.java - you can use your assignment as a guide to start this. You will have a read method and a write method. At this time neither will take arguments or return a value. - write method = write to a file using the CSV method you used in your last programming assignment. Try to figure out how many fields you will need, and what their variable types will need to be. Write 5 records using these values. Remember a record is a set of related data, example, in the banking app you will have 5 customers so store 5 records of those customers. - read method - Read in and print out all of the records stored in the file. Use the same method to seperate the different fields of each record into their associated fields prior to printing them out. Do NOT just print out the values as they are read from the file. Make sure to convert them to their
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
