Question: Kindly i need to create this app using Java. it is one app with multiple parts. very appreciated Implement, using Java, an application to add
Kindly i need to create this app using Java. it is one app with multiple parts. very appreciated

Implement, using Java, an application to add user's transactions into a binary file, and then transfer the data in the file into a Database. 1. Create the following GUI: 1 2 3 4 2. When the user presses the "Add" button, a new record containing the transaction id, name, and amount is added to the binary file named Transactions.dat. The file is located in C:/Account/Info folder. If nothing is added to the text fields an Alert is displayed to the user and nothing is added to the file. After the record is added, clear the text fields. Example on Transactions File Format Salary +1000 Gas -200 Commission +149.99 Groceries -40.75 3- When the user presses the "Sync" button, copy all data from the binary file into the database named AccountDB. Given that: Table Name: Transactions Table Columns and Types TransactionID (int), Transaction Name (String) Transaction Amount (double) 4- When the user presses "Exit", close all active connections and quit the application 5. If an exception occurs when adding a transaction or syncing to the database, display Alerts to the user containing the following messages respectively "Cannot add the transaction to the file, please try again later." "Cannot sync your transactions to the database, please try again later
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
